Skip to main content
In Bun, Response objects can accept a Node.js Readable. This works because Bun’s Response object allows any async iterable as its body. Node.js streams are async iterables, so you can pass them directly to Response.
https://mintcdn.com/bun-1dd33a4e-claude-docs-bunfig-missing-fields/ezY9cqHIbAlx71jp/icons/typescript.svg?fit=max&auto=format&n=ezY9cqHIbAlx71jp&q=85&s=fa9c9d5f512d0d81ae41ed65741d389aserver.ts
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" },
    });
  },
});