Skip to content

Instantly share code, notes, and snippets.

@ayushgp
Created November 9, 2016 04:36
Show Gist options
  • Select an option

  • Save ayushgp/ed2cbf8e903163474934570a1df851af to your computer and use it in GitHub Desktop.

Select an option

Save ayushgp/ed2cbf8e903163474934570a1df851af to your computer and use it in GitHub Desktop.
function NewLogger(req, res, next){
console.log("A request was received at /new");
next();
}
app.use('/new', NewLogger);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment