Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tokuhirom/micro_dispatcher.js


https://github.com/tokuhirom/micro_dispatcher.js

Last synced: 18 days ago
JSON representation

Awesome Lists containing this project

README

        

micro_dispatcher.js
===================

WHAT'S THIS?
------------

This is yet another tiny javascript library for dispatching.

DISPATCHER
----------

var dispatcher = new MicroDispatcher();
dispatcher.register('/my/', function () {
// your code here
});
dispatcher.register('/user/:id', function (id) {
// your code here
});
dispatcher.dispatch(location.pathname);

REQUIREMENTS
------------

There is no dependencies.