66

0.3.0 • Public • Published

66

Simple client-side router.

Install

Install 66 via NPM or Bower.

Usage

var Router = require('66'),
    rt = new Router();

rt.get('/', function(){
  // render the index page
});

rt.get('/post/:id', function(params) {
  // render post page
  // you can get at the id via `params.id`
});

// start listening for changes
rt.start();

// capture all <a> tag clicks
rt.captureAnchorTagClicks();

Dependencies (0)

    Dev Dependencies (5)

    Package Sidebar

    Install

    npm i 66

    Weekly Downloads

    4

    Version

    0.3.0

    License

    Apache-2.0

    Last publish

    Collaborators

    • airportyh
    • parris