Skip to content

Instantly share code, notes, and snippets.

@nomanHasan
Created December 8, 2017 13:06
Show Gist options
  • Save nomanHasan/fb5f1f83cf8155c956b2ccd3d613490e to your computer and use it in GitHub Desktop.
Save nomanHasan/fb5f1f83cf8155c956b2ccd3d613490e to your computer and use it in GitHub Desktop.
Minimalistic Express JS
const express = require('express')
const app = express()
app.get('/', (req, res) => res.json({
hello:"hello"
}))
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