Package Exports
- wayfarer
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (wayfarer) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
wayfarer
A simple router built for minimalism and speed. Works best with React and Browserify(github.com/substack/browserify).
Installation
$ npm i --save wayfarer
API
var wayfarer = require('wayfarer');
var router = wayfarer();
router
.path('/', function() {console.log('/')})
.path('/home', function() {console.log('/home')})
.path('/404', function() {console.log('/404')})
.path('/:user', function() {console.log('/user')});