import * as deno from "deno"; import { serve } from "./http.ts"; const addr = deno.args[1] || "127.0.0.1:4500"; const server = serve(addr); const body = new TextEncoder().encode("Hello World"); async function main(): Promise { for await (const request of server) { await request.respond({ status: 200, body }); } } main();