JSPM

  • Created
  • Published
  • Downloads 2104
  • Score
    100M100P100Q115843F
  • License MIT

A simple router built for minimalism and speed

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

NPM version build status Test coverage

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')});

License

MIT © Yoshua Wuyts