Skip to content

Instantly share code, notes, and snippets.

@ArturJS
Created February 5, 2020 07:44
Show Gist options
  • Save ArturJS/47bb9e87a270d6dfeecbbbef315d87a7 to your computer and use it in GitHub Desktop.
Save ArturJS/47bb9e87a270d6dfeecbbbef315d87a7 to your computer and use it in GitHub Desktop.
Deno server
import { serve } from "https://deno.land/std@v0.30.0/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