Middleware
Can add as much middleware as you want to a route
Example
middleware/auth.js
Next
next('route')
will go to next route handler that matches, if you pass anything else into next()
it will be considered an error
Last updated
Can add as much middleware as you want to a route
middleware/auth.js
next('route')
will go to next route handler that matches, if you pass anything else into next()
it will be considered an error
Last updated