Skip to content

Instantly share code, notes, and snippets.

@AntouanK
Last active May 17, 2020 08:17
Show Gist options
  • Save AntouanK/37b470f88271e0c0bbed20c904688b61 to your computer and use it in GitHub Desktop.
Save AntouanK/37b470f88271e0c0bbed20c904688b61 to your computer and use it in GitHub Desktop.
import { serve } from "https://deno.land/std/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" });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment