You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 5, 2022. It is now read-only.
page.js has a fallthrough mechanism, which does two things - it allows separation of concerns...
// `load` is passed a `next` function, which it calls once the user is loadedpage('/user/*',load);// for both of these routes, the user will be loaded before the route handler is calledpage('/user/:user',show);page('/user/:user/edit',edit);
...and a way to handle routes that don't match anything:
page.js has a fallthrough mechanism, which does two things - it allows separation of concerns...
...and a way to handle routes that don't match anything:
Would be neat to have something similar in roadtrip eventually.
The text was updated successfully, but these errors were encountered: