Skip to content

Instantly share code, notes, and snippets.

@kianaditya
Created June 15, 2020 09:10
Show Gist options
  • Save kianaditya/0e93f73132251380008de8ca4365c18f to your computer and use it in GitHub Desktop.
Save kianaditya/0e93f73132251380008de8ca4365c18f to your computer and use it in GitHub Desktop.
express medium article part 1
require('dotenv').config()
const express = require('express')
const app = express()
const PORT = process.env.PORT
app.listen(PORT, () => {
console.info(`App listening on port ${PORT}`)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment