import { serve } from "https://deno.land/x/deno@v0.28.0/std/http/mod.ts";
Start a HTTP server
import { serve } from "https://deno.land/std/http/server.ts";
const body = new TextEncoder().encode("Hello World\n");
const s = serve({ port: 8000 });
for await (const req of s) {
req.respond({ body });
}