0.3.0 • Published 9 years ago
boajs-router v0.3.0
boajs-router
A routing library for bouzuya/b-o-a.
Installation
$ npm install boajs-router
Usage
import { init } from 'boajs-router';
const routes = [
{ path: '/users' },
{ path: '/users/:id' }
];
const router = init(routes);
const matched = router('/users/123');
// { route: { path: '/users/:id' }, params: { id: '123' } }
const notMatched = router('/items');
// null