What is Express middleware?
a set of functions that are executed during the process of http requests received by an express application
What is Express middleware useful for?
Building a sing /muilti/hybrid web application
How do you mount a middleware with an Express application?
(putting a directory ) E: app.use(‘/user/:id’)
Which objects does an Express application pass to your middleware to manage the request/response lifecycle of the server?
Request, response, next function