December 2017
Intermediate to advanced
316 pages
6h 58m
English
Middleware is an entity that hooks into a server's request/response processing. The middleware can be defined in many components. Each component has a specific function to perform. Whenever we define the handlers for our URL patterns (as in the last chapter), the request hits the handler and executes the business logic. So virtually all middleware should perform these functions in order:
We can see the previous points in the form of a visual illustration:

If we observe the diagram ...