Skip to content

Instantly share code, notes, and snippets.

@aofleejay
Created July 29, 2017 08:01
Show Gist options
  • Save aofleejay/63bb54c56ab038a345bf6c1485f7505b to your computer and use it in GitHub Desktop.
Save aofleejay/63bb54c56ab038a345bf6c1485f7505b to your computer and use it in GitHub Desktop.
hello world for express
const express = require('express')
const app = express()
app.get('/', (req, res) => {
res.send('Hello World')
})
app.listen(3000, () => {
console.log('Start server at port 3000.')
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment