(Finally) Introducing RouterRouter, a JavaScript Routing Library derived from Backbone

Jason Garber, Former Senior Web Developer

Article Category: #Code

Posted on

Just over a year ago now, I wrapped up a significantly large project for The Chronicle of Higher Education. I spent a good amount of my time on the project learning and working with Backbone.js, a popular MVC-ish JavaScript library. There are plenty of things to like and dislike about Backbone, but I really like the library’s Router.

Put simply, Backbone’s Router triggers actions based on the current page’s URL. The class accepts an object whose keys represent URLs (or patterns that match URLs) and whose values are functions (or calls to functions). Like so:

var router = new Backbone.Router.extend({
 routes: {
 'foo/:bar': function(bar) {
 console.log(bar);
 }
 }
});

It’s a brilliantly simple design that’s dramatically different from techniques I’d previously considered (see: The Garber-Irish Implementation). I was a fan, to say the least.

But… the thought of including Backbone wholesale in every project ever really rustled my jimmies. I looked at some other routing libraries (there’s a great list here), but each was either too feature-heavy or just not quite like Backbone’s Router. I wanted Just this one feature. And even then, not all of that feature.

So I set out to build my own by extracting Backbone’s Router into a standalone library.

Enter RouterRouter

Also just over a year ago now, I committed the first version of RouterRouter on GitHub. The super smart group of people working on Backbone made the task of extracting Backbone.Router fairly straightforward. Using the annotated source, I was able to find the relevant pieces, re-writing things as necessary to incorporate only the features I really wanted.

What I ended up with is a dependency-free, modular library clocking in at a whopping 982 bytes (minified and gzipped). RouterRouter matches all kinds of URL patterns from simple string matching to completely custom regular expressions.

A basic example of RouterRouter in action, re-using the Backbone example from above:

var router = new RouterRouter();

router.route('foo/:bar', function(bar) {
 console.log(bar);
});

In the above example, the function will fire on any URL matching the pattern foo/:bar and passes :bar into the function for use. That’s great if you want to match one route at a time. But, just like Backbone, you can supply a hash of routes to match against a variety of functions:

var router = new RouterRouter({
 routes: {
 'foo/:bar': 'whiskey', // matches http://example.com/foo/1234
 'biz/*baz': 'tango', // matches http://example.com/biz/1/2/3/4
 '': 'foxtrot' // matches http://example.com/
 },

 foxtrot: function() {
 console.log('This very basic route matches the root URL.');
 },

 tango: function(baz) {
 console.log(baz); // logs 1/2/3/4
 },

 whiskey: function(bar) {
 console.log(bar); // logs 1234
 }
});

In this example, the routes hash is checked for a matching pattern against the current URL, firing the appropriate function when a match occurs. Any values specified in the routes hash are passed along to the fired callback function. Additional usage examples are provided in the project’s the README file.

But can it do…?

It’s worth mentioning a couple things RouterRouter can’t do or doesn’t attempt to do.

RouterRouter doesn’t (currently) support the HTML5 History API. This is a choice I made to keep the library as small as possible and, well, I haven’t had a project yet that required using the History API. That could change, of course.

Also, RouterRouter makes use of the Object.keys and Array.prototype.map JavaScript methods. Versions of Internet Explorer prior to 9 don’t support either of these methods. Luckily, there are polyfills for each available. It’s up to you if you choose to polyfill old versions of Internet Explorer or use a mustard-cutting technique to supply enhanced features to more-capable browsers. Leaving that decision in your hands felt like the right thing to do.


RouterRouter is available for inclusion in your project via Bower: bower install routerrouter. Source code is also available on GitHub. If you’re interested in improving RouterRouter, look over the contributing guidelines and submit an Issue or Pull Request.

I’ve been using RouterRouter on projects for the last year and it hasn’t let me down. It’s a tiny, dependency-free, and reliable library well-suited for a variety of projects. Try it out yourself and let me know what you think.

This post was originally published on my own site.

Related Articles