Skip to content

Instantly share code, notes, and snippets.

@ikku47
Last active November 16, 2022 12:08
Show Gist options
  • Save ikku47/fedfa07d0f4d2cfde16a4133e525c6ac to your computer and use it in GitHub Desktop.
Save ikku47/fedfa07d0f4d2cfde16a4133e525c6ac to your computer and use it in GitHub Desktop.
Hello world program for bun
// http.ts
export default {
port: 3000,
fetch(request: Request) {
return new Response('Hello World');
},
};
// bun ./http.ts
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment