Bun 提供了许多便捷函数,用于将 ReadableStream
的内容读取为不同的格式。
const stream = new ReadableStream();
const buf = await Bun.readableStreamToArrayBuffer(stream);
请参阅文档 > API > 实用程序,以获取有关 Bun 的其他 ReadableStream
转换函数的文档。
Bun 提供了许多便捷函数,用于将 ReadableStream
的内容读取为不同的格式。
const stream = new ReadableStream();
const buf = await Bun.readableStreamToArrayBuffer(stream);
请参阅文档 > API > 实用程序,以获取有关 Bun 的其他 ReadableStream
转换函数的文档。
HTTP
包管理器
将 bun install 与 Artifactory 一起使用
配置 git 以区分 Bun 的 lockb lockfile
在 GitHub Actions 中使用 Bun 安装依赖项
读取文件
运行时
流
将 ReadableStream 转换为 Uint8Array
将 ReadableStream 转换为 ArrayBuffer
将 Node.js Readable 转换为 Uint8Array
实用程序