mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
35 lines
1.0 KiB
TypeScript
35 lines
1.0 KiB
TypeScript
// Start a fast HTTP server from a function
|
|
Bun.serve({
|
|
fetch(req: Request) {
|
|
return new Response(`Echo: ${req.url}`);
|
|
},
|
|
|
|
// baseURI: "http://localhost:3000",
|
|
|
|
// this is called when fetch() throws or rejects
|
|
// error(err: Error) {
|
|
// return new Response("uh oh! :(\n" + err.toString(), { status: 500 });
|
|
// },
|
|
|
|
// this boolean enables bun's default error handler
|
|
development: process.env.NODE_ENV !== "production",
|
|
// note: this isn't node, but for compatibility bun supports process.env + more stuff in process
|
|
|
|
// SSL is enabled if these two are set
|
|
// certFile: './cert.pem',
|
|
// keyFile: './key.pem',
|
|
|
|
port: 3000, // number or string
|
|
});
|
|
// Start a fast HTTP server from the main file's export
|
|
// export default {
|
|
// fetch(req) {
|
|
// return new Response(
|
|
// `This is another way to start a server!
|
|
// if the main file export default's an object
|
|
// with 'fetch'. Bun automatically calls Bun.serve`
|
|
// );
|
|
// },
|
|
// // so autocomplete & type checking works
|
|
// } as Bun.Serve;
|