What is middleware in Express?
- A A database layer
- B A function with access to req, res and next that runs during the request-response cycle
- C A templating engine
- D A type of route parameter
Answer
A function with access to req, res and next that runs during the request-response cycle
Middleware runs in registration order and can modify the request, end the response, or pass control on. Order therefore matters a great deal.





