2.0.1 • Published 8 years ago

@navaru/url-path-router v2.0.1

Weekly downloads
3
License
ISC
Repository
github
Last release
8 years ago

@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)

License ISC