Bun

指南

使用 Bun 将 Node.js Readable 转换为字符串

要在 Bun 中将 Node.js Readable 流转换为字符串,你可以创建一个新的 Response 对象,其中流作为主体,然后使用 response.text() 将流读入字符串。

import { Readable } from "stream";
const stream = Readable.from([Buffer.from("Hello, world!")]);
const text = await new Response(stream).text();
console.log(text); // "Hello, world!"