mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 06:18:07 +00:00
Kohei Watanabe
b755568571
git-subtree-dir: deno git-subtree-mainline:30663abe62
git-subtree-split:eb9915af3e
10 lines
262 B
TypeScript
10 lines
262 B
TypeScript
import { serve } from "https://deno.land/std@0.56.0/http/server.ts";
|
|
|
|
async function main() {
|
|
const port = 8000;
|
|
console.log(`http://localhost:${port}/`);
|
|
for await (const req of serve({ port })) {
|
|
req.respond({ body: "Hello World\n" });
|
|
}
|
|
}
|
|
main();
|