import { listenAndServe } from "https://deno.land/std@0.73.0/http/server.ts";
Start an HTTP server with given options and request handler
const body = "Hello World\n";
const options = { port: 8000 };
listenAndServe(options, (req) => {
req.respond({ body });
});