Skip to content

Instantly share code, notes, and snippets.

@kingsley-einstein
Created September 13, 2020 18:41
Show Gist options
  • Save kingsley-einstein/84ba98629481ccf83c000d1a958ac311 to your computer and use it in GitHub Desktop.
Save kingsley-einstein/84ba98629481ccf83c000d1a958ac311 to your computer and use it in GitHub Desktop.
import express from "express";
import debug from "debug";
const app: express.Application = express();
const log = debug("logging");
app.listen(4000, () => log("Express server running on 4000"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment