3000
. It responds to all requests with a Response
with status 200
and body "Welcome to Bun!"
.
See Bun.serve
for details.
3000
. It responds to all requests with a Response
with status 200
and body "Welcome to Bun!"
.
See Bun.serve
for details.
const server = Bun.serve({
port: 3000,
fetch(request) {
return new Response('Welcome to Bun!');
},
});
console.log(`Listening on ${server.url}`);
Was this page helpful?