File SystemHTTP & Networking
fetch with unix domain sockets in Bun
In Bun, fetch() can send HTTP requests over a unix domain socket with the unix option.
Upload files via HTTP using FormData
To upload files over HTTP with Bun, use the FormData API. Start with an HTTP server that serves an HTML form.
Streaming HTTP Server with Async Iterators
In 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 the