0.2.1 • Published 11 years ago

helm v0.2.1

Weekly downloads
100
License
MIT
Repository
github
Last release
11 years ago

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