Skip to content

Instantly share code, notes, and snippets.

@lennym
Last active August 29, 2015 14:26
Show Gist options
  • Save lennym/3bdda0647c6dd541efba to your computer and use it in GitHub Desktop.
Save lennym/3bdda0647c6dd541efba to your computer and use it in GitHub Desktop.
var app = require('express')();
app.get('/foo', function (req, res, next) {
res.send(req.path);
// here req.path === '/foo'
});
app.use('/bar', function (req, res, next) {
res.send(req.path);
// here req.path === '/'
});
app.listen(3001);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment