Skip to content

Instantly share code, notes, and snippets.

@bacongravy
Last active June 23, 2020 21:13
Show Gist options
  • Save bacongravy/6fdb351c60745ca12867af4b743606b2 to your computer and use it in GitHub Desktop.
Save bacongravy/6fdb351c60745ca12867af4b743606b2 to your computer and use it in GitHub Desktop.
import { listenAndServe } from "https://deno.land/std@0.58.0/http/server.ts";
import hello from "./api/hello.ts"
const s = listenAndServe({ port: 8000 }, hello);
console.log("http://localhost:8000/");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment