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())