helm
v0.2.1
Published
A minimal hash router for browsers.
Downloads
9,076
Readme
Helm: Minimal router for browsers.
Inspired by page.js, Helm is a client-side router that leverages the hash portion of URLs to do the routing.
Installation
npm install helm
Usage
var helm = require('helm');
var router = helm();
helm.on('/user/:username', function (context) {
console.log(context.params.username);
});
helm.go('/user/jack');