mirror of
https://github.com/denoland/deno
synced 2024-11-05 18:45:24 +00:00
11 lines
319 B
JavaScript
11 lines
319 B
JavaScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
const addr = Deno.args[0] ?? "127.0.0.1:4500";
|
|
const [hostname, port] = addr.split(":");
|
|
const { serve } = Deno;
|
|
|
|
function handler() {
|
|
return new Response("Hello World");
|
|
}
|
|
|
|
serve({ hostname, port: Number(port), reusePort: true }, handler);
|