Bun

指南HTTP

使用 Bun 的异步迭代器流式传输 HTTP 服务器

在 Bun 中,Response 对象可以将异步生成器函数作为其正文。这允许你在数据可用时将其流式传输到客户端,而不是等待整个响应准备就绪。

Bun.serve({
  port: 3000,
  fetch(req) {
    return new Response(
      // An async generator function
      async function* () {
        yield "Hello, ";
        await Bun.sleep(100);
        yield "world!";

        // you can also yield a TypedArray or Buffer
        yield new Uint8Array(["\n".charCodeAt(0)]);
      },
      { headers: { "Content-Type": "text/plain" } },
    );
  },
});

你可以将任何异步可迭代对象直接传递给 Response

Bun.serve({
  port: 3000,
  fetch(req) {
    return new Response(
      {
        [Symbol.asyncIterator]: async function* () {
          yield "Hello, ";
          await Bun.sleep(100);
          yield "world!";
        },
      },
      { headers: { "Content-Type": "text/plain" } },
    );
  },
});