Skip to content

Instantly share code, notes, and snippets.

@bobharley
Created July 12, 2019 02:26
Show Gist options
  • Save bobharley/c0040b6380313e1f309ccbd5159821b4 to your computer and use it in GitHub Desktop.
Save bobharley/c0040b6380313e1f309ccbd5159821b4 to your computer and use it in GitHub Desktop.
import { serve } from "https://deno.land/std@v0.11/http/server.ts";
async function main() {
const body = new TextEncoder().encode("Hello World\n");
for await (const req of serve(":8000")) {
req.respond({ body });
}
}
main();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment