File SystemHTTP & NetworkingServer-Sent Events (SSE) with BunServer-Sent Events let you push a stream of text events to the browser over a single HTTP response. The client consumes them with EventSource .Copy MarkdownOpenStreaming HTTP Server with Async IteratorsIn Bun, a Response accepts an async generator function as its body, so you can stream data to the client as it becomes available rather than waiting for theStreaming HTTP Server with Node.js StreamsIn Bun, a Response accepts a Node.js Readable as its body.