const server = Bun.serve({ port: 3265, fetch(req) { return new Response("Hello World"); } }); console.log("Server running on port", server.port);