mirror of
https://github.com/rjNemo/deno_hello
synced 2026-06-06 01:56:40 +00:00
8 lines
232 B
TypeScript
8 lines
232 B
TypeScript
import { listenAndServe } from "./deps.ts";
|
|
|
|
const port = 8000;
|
|
|
|
console.log(`Server listening on http://localhost:${port}/`);
|
|
await listenAndServe({ port }, (req) => req.respond({ body: "Hello" }));
|
|
|
|
// write handler using req.url
|