Skip to content

Instantly share code, notes, and snippets.

@sirdarthvader
Created April 19, 2018 01:12
Show Gist options
  • Save sirdarthvader/3fecbc354b9e47dd5ab9377b9dbef06f to your computer and use it in GitHub Desktop.
Save sirdarthvader/3fecbc354b9e47dd5ab9377b9dbef06f to your computer and use it in GitHub Desktop.
const express = require('express')
const app = express()
app.get('/', (req, res) => res.send('Hello World!'))
app.listen(3000, () => console.log('Example app listening on port 3000!'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment