Runs a chain of middleware in order, returning the first Response any of them produces. If none returns a truthy value, a 204 No Content is returned. A thrown error is caught and returned as a plain Response with its message.
Response
204 No Content
The request context passed to every middleware.
Middleware to run, in order. The last entry is typically the route handler.
The first truthy Response, or res_204() when none respond.
res_204()
Generated using TypeDoc
Runs a chain of middleware in order, returning the first
Responseany of them produces. If none returns a truthy value, a204 No Contentis returned. A thrown error is caught and returned as a plainResponsewith its message.