9 lines
152 B
TypeScript
9 lines
152 B
TypeScript
|
const server = Bun.serve({
|
||
|
port: 8080,
|
||
|
fetch(req) {
|
||
|
return new Response();
|
||
|
},
|
||
|
});
|
||
|
|
||
|
console.log(`Listening on http://localhost:${server.port}...`);
|