Skip to content

Instantly share code, notes, and snippets.

@reggi
Created January 14, 2013 18:12
Show Gist options
  • Select an option

  • Save reggi/4532024 to your computer and use it in GitHub Desktop.

Select an option

Save reggi/4532024 to your computer and use it in GitHub Desktop.
app.param("hash",function(req, res, next, id){
req.hash_id = id;
return next();
});
app.use(function(req, res, next){
console.log(req.hash_id);
return next();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment