fastly / expressly

Express style router for Fastly Compute

Home Page:https://expressly.edgecompute.app/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

support explicilty calling the next middleware via `next`

rdmulford opened this issue · comments

context

related #30

express provides a nextvariable in middlewares which represents the next middleware function in the middleware stack

see: https://expressjs.com/en/guide/using-middleware.html

this is nice to have because it allows running some code in a middleware after the middleware chain

some useful hints on implementations might be

done

  • support optional next var in middleware functions