Skip to content

Instantly share code, notes, and snippets.

@pasha-pivo
Created April 7, 2017 08:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pasha-pivo/a6c12c324a72ea2ba3fff6b0ec9aa8c1 to your computer and use it in GitHub Desktop.
Save pasha-pivo/a6c12c324a72ea2ba3fff6b0ec9aa8c1 to your computer and use it in GitHub Desktop.
test gist
const connect = require('connect')
const app = connect()
app.use('/', (req, res, next) => {
res.end('You did it, bro!')
})
app.listen(8989)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment