url-route
v0.4.1
Published
Url Router
Downloads
471
Readme
Simple Url Route(r)
- GIT
- https://github.com/react-atomic/react-atomic-organism/tree/master/packages/lib/url-route
- NPM
- https://www.npmjs.com/package/url-route
How to use?
const router = new Router();
router.addRoute("/xxx*", ()=>{});
router.addRoute("/yyy*", ()=>{});
let match = router.match("/xxx/foo");
if (match) {
match.fn()
} else if (match.next) {
match = match.next("/xxx/foo");
}