mirror of
https://github.com/rjNemo/deno_hello
synced 2026-06-06 01:56:40 +00:00
6 lines
234 B
TypeScript
6 lines
234 B
TypeScript
import { listenAndServe } from "https://deno.land/std@0.87.0/http/server.ts";
|
|
|
|
const port = 8000;
|
|
|
|
console.log(`Server listening on http://localhost:${port}/`);
|
|
await listenAndServe({ port }, (req) => req.respond({ body: "Hello" }));
|