Skip to content

Instantly share code, notes, and snippets.

@wonderdogone
Created August 18, 2014 19:26
Show Gist options
  • Save wonderdogone/dd48b07334b894975083 to your computer and use it in GitHub Desktop.
Save wonderdogone/dd48b07334b894975083 to your computer and use it in GitHub Desktop.
app.get("/user/:userid", function (req, res, next) {
var id = parseInt(req.params.userid);
if (id === 'John') {
next();
} else {
//do something with the none John user id
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment