Skip to content

Instantly share code, notes, and snippets.

@theptrk
Created July 14, 2018 22:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theptrk/fc90544055c1b355ecfe0ae81ead80fa to your computer and use it in GitHub Desktop.
Save theptrk/fc90544055c1b355ecfe0ae81ead80fa to your computer and use it in GitHub Desktop.
index.js
const express = require('express')
const app = express()
const PORT = process.env.PORT || 3000
app.get('/', (req, res) => res.send('Hello World!'))
app.listen(PORT, () => console.log(`Example app listening on port ${PORT}!`))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment