Skip to content

Instantly share code, notes, and snippets.

@likejazz
Created May 4, 2021 02:47
Show Gist options
  • Save likejazz/d78f2ba13dfea2b50e35cde64f0ef7db to your computer and use it in GitHub Desktop.
Save likejazz/d78f2ba13dfea2b50e35cde64f0ef7db to your computer and use it in GitHub Desktop.
Hello, Deno
import { serve } from "https://deno.land/[email protected]/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