Bun

指南HTTP

使用 Bun 的 Node.js 流的流式 HTTP 服务器

在 Bun 中,Response 对象可以接受 Node.js Readable

之所以可行,是因为 Bun 的 Response 对象允许任何异步可迭代对象作为其主体。Node.js 流是异步可迭代对象,因此你可以将它们直接传递给 Response

import { Readable } from "stream";
import { serve } from "bun";
serve({
  port: 3000,
  fetch(req) {
    return new Response(Readable.from(["Hello, ", "world!"]), {
      headers: { "Content-Type": "text/plain" },
    });
  },
});