要在 Bun 中将 Node.js Readable
流转换为 JSON 对象,你可以创建一个新的 Response
对象,其中流作为主体,然后使用 response.json()
将流读入 JSON 对象。
import { Readable } from "stream";
const stream = Readable.from([JSON.stringify({ hello: "world" })]);
const json = await new Response(stream).json();
console.log(json); // { hello: "world" }