Skip to content

Instantly share code, notes, and snippets.

@paulobunga
Created January 28, 2019 12:28
Show Gist options
  • Save paulobunga/aed21932376916d514cbf4f6ffc04acd to your computer and use it in GitHub Desktop.
Save paulobunga/aed21932376916d514cbf4f6ffc04acd to your computer and use it in GitHub Desktop.
//Simple middleware which logs to console
var logToConsole = (req, res, next) => {
console.log('I am your Middleware');
next();
}
exports.logToConsole;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment