Factory functions for creating HTTP Response objects.
0
emarref
HttpMiddleware
Script
Chainable middleware functions to simplify http requests.
0
emarref
HttpMiddlewareChain
Script
An implementation of chainable http middleware. Wrap your http handlers in middleware to add functionality and reduce code duplication. export default function chain()
.then(add(requireHttpMethod("post")))
.then(add(requireAuthentication()))
.then(send())