Skip to content

Instantly share code, notes, and snippets.

@oakfang
Created May 28, 2018 11:38
Show Gist options
  • Save oakfang/d083e4ba8b3bab247313c8b22997b1c0 to your computer and use it in GitHub Desktop.
Save oakfang/d083e4ba8b3bab247313c8b22997b1c0 to your computer and use it in GitHub Desktop.
Compose middleware for express
function composeMiddleware(...middleware) {
return (req, res, next) => middleware
.reverse()
.reduce(
(next, mw) =>
() => mw(req, res, next),
next
)();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment