File SystemHTTP & NetworkingSend an HTTP request using fetchBun implements the Web-standard fetch API for sending HTTP requests. To send a GET request to a URL:Copy MarkdownOpenWrite a simple HTTP serverThis code starts an HTTP server listening on port 3000 . It responds to every request with a 200 status and the body "Welcome to Bun!" .Hot reload an HTTP serverThe --hot flag runs a file with hot reloading enabled. When any module or file changes, Bun re-runs the file.