Created
September 14, 2020 12:04
-
-
Save kingsley-einstein/e248ad4b9343cbd3499972ceafce7eee to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import express from "express"; | |
import debug from "debug"; | |
import config from "./config"; | |
const app: express.Application = express(); | |
const log = debug("logging"); | |
config(app); | |
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