Be the first user to complete this post
|
Add to List |
Understanding expressjs middleware with a visual example
function(req, res, next){
// Your business logic goes here
}
For example, you could implement a simple request logger by defining middleware function that does just that.
function(req, res, next){
// Basic logging for all the routes
console.log(req.method + ':' + req.originalUrl);
next();
};
Also Read:
- What is an npmignore file and what is it used for
- Resolved - Error: listen eaccess using nodejs and pm2
- How to publish a package on npm
- Accessing the request body and session in nodejs using express
- Configuring jshint as a pre-commit hook for your nodejs applications