// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. import { serve } from "./server.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 { console.log(`http://${addr}/`); for await (const req of server) { req.respond({ body }); } } main();