Skip to content

Instantly share code, notes, and snippets.

@jbergant
Created June 2, 2020 12:39
Show Gist options
  • Select an option

  • Save jbergant/3a827e8fca1790ba54a4bb21f4dad612 to your computer and use it in GitHub Desktop.

Select an option

Save jbergant/3a827e8fca1790ba54a4bb21f4dad612 to your computer and use it in GitHub Desktop.
deno server
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