Created
April 7, 2017 08:26
-
-
Save pasha-pivo/a6c12c324a72ea2ba3fff6b0ec9aa8c1 to your computer and use it in GitHub Desktop.
test gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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