Skip to content

Instantly share code, notes, and snippets.

@viral-sh
Last active October 29, 2018 11:28
Show Gist options
  • Save viral-sh/20a5089268c66da5587ca274445ff9aa to your computer and use it in GitHub Desktop.
Save viral-sh/20a5089268c66da5587ca274445ff9aa to your computer and use it in GitHub Desktop.
Express helloworld
const express = require('express')
const app = express()
const port = 3000
app.get('/', (req, res) => res.send('Hello World!'))
app.listen(port, () => console.log(`Simple Hello World app listening on port ${port}!`))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment