@navaru/url-path-router
v2.0.1
Published
URL path router (radix tree based)
Downloads
3
Readme
@navaru/url-path-router
URL path router (radix tree based)
Example
import { route, match } from '@navaru/url-path-router'
// create a path tree
const root = route('/users', onIndex)
// add another route on tree
route('/users/:id/profile', onProfile, root)
route('/users/:id/settings', onSettings, root)
const { unmatched, keys, handlers } = match('/users/1234/settings', root)