mirror of
https://github.com/rjNemo/deno_tuto
synced 2026-06-06 02:26:40 +00:00
9 lines
184 B
TypeScript
9 lines
184 B
TypeScript
import { serve } from "./deps.ts";
|
|
|
|
const s = serve({ port: 8000 });
|
|
|
|
console.log("http://localhost:8000/");
|
|
|
|
for await (const req of s) {
|
|
req.respond({ body: "Hello, World\n" });
|
|
}
|