deno_tuto/index.ts
2021-02-18 18:31:25 +01:00

8 lines
217 B
TypeScript

import { serve } from "https://deno.land/std@0.87.0/http/server.ts";
const s = serve({ port: 8000 });
console.log("http://localhost:8000/");
for await (const req of s) {
req.respond({ body: "Hello, World\n" });
}