Blob
类提供了许多方法来以不同格式使用其内容,包括 .stream()
。 这会返回 Promise<ReadableStream>
。
const blob = new Blob(["hello world"]);
const stream = await blob.stream();
请参阅文档 > API > 二进制数据,获取有关使用 Bun 操作二进制数据的完整文档。
Blob
类提供了许多方法来以不同格式使用其内容,包括 .stream()
。 这会返回 Promise<ReadableStream>
。
const blob = new Blob(["hello world"]);
const stream = await blob.stream();
请参阅文档 > API > 二进制数据,获取有关使用 Bun 操作二进制数据的完整文档。
HTTP
包管理器
将 bun install 与 Artifactory 一起使用
配置 git 以区分 Bun 的 lockb lockfile
在 GitHub Actions 中使用 Bun 安装依赖项
读取文件
运行时
流
将 ReadableStream 转换为 Uint8Array
将 ReadableStream 转换为 ArrayBuffer
将 Node.js Readable 转换为 Uint8Array
实用工具