blob: a4cd2c5620313e5d08bb8b8a613f22e9afd12eab (
plain)
1
2
3
4
5
6
7
8
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
const port = Bun.argv[2] || "4545";
Bun.serve({
fetch(_req) {
return new Response("Hello World");
},
port: Number(port),
});
|