Bun

指南

使用 Bun 将 Node.js Readable 转换为 Uint8Array

要在 Bun 中将 Node.js Readable 流转换为 Uint8Array,您可以创建一个新的 Response 对象,并将流作为主体,然后使用 bytes() 将流读取到 Uint8Array 中。

import { Readable } from "stream";
const stream = Readable.from(["Hello, ", "world!"]);
const buf = await new Response(stream).bytes();