Skip to content

Instantly share code, notes, and snippets.

@sweetyclem
Created June 6, 2020 18:10
Show Gist options
  • Save sweetyclem/dcc2fbb60de959e14072c0ac5d25844b to your computer and use it in GitHub Desktop.
Save sweetyclem/dcc2fbb60de959e14072c0ac5d25844b to your computer and use it in GitHub Desktop.
if (process.env.NODE_ENV !== "production")
{
require("dotenv").config()
}
const express = require('express')
const port = process.env.PORT
const app = express()
app.listen(port, function () {
console.log(`Listening on ${port}`)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment