Skip to content

Instantly share code, notes, and snippets.

@nomoney4me
Created October 16, 2018 03:42
Show Gist options
  • Select an option

  • Save nomoney4me/9d9ff363a5a336c58502ebaae59d3f5b to your computer and use it in GitHub Desktop.

Select an option

Save nomoney4me/9d9ff363a5a336c58502ebaae59d3f5b to your computer and use it in GitHub Desktop.
const express = require('express')
, app = express();
app.get('/', (req, res) => {
res.send('hello world')
})
app.listen(3000, console.log('listening on 3000'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment