File SystemHTTP & NetworkingStreaming 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 theCopy MarkdownOpenfetch with unix domain sockets in BunIn Bun, fetch() can send HTTP requests over a unix domain socket with the unix option.Server-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 .