Skip to content

Instantly share code, notes, and snippets.

@ayushgp
Created November 9, 2016 04:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ayushgp/ed2cbf8e903163474934570a1df851af to your computer and use it in GitHub Desktop.
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