npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

express-route-dispatcher

v0.0.12

Published

Route dispatcher for Express

Downloads

12

Readme

express-route-dispatcher

Micro routing framework on top of the Express framework.

[2014-01-28] Now with generators/yield support

What does it do?

ERD provides a way of decoupling your route definition and the actual implementation by following a convention based approach. Furthermore it allows you to add "before" hooks to your route processing.

The routes are mapped to controllers/actions (files/methods).

See the examples for live action.

Install

$ npm install express express-route-dispatcher

Examples 1: basic routing

ERD assumes some defaults when not explicitely configured. For example it expects the controllers to be in a directory called "./controllers".

Example directory layout ./server.js ./controllers/basic.js ./controllers/auth.js

./server.js

	var express = require('express');
	var dispatcher = require('express-route-dispatcher');
	var app = express();

	// create the routes
	dispatcher.map(function() {
	    // route, controller, method
		this.get ('/basic/hello', 'basic', 'hello');
		this.post('/basic/concat/:a/:b', 'basic', 'concat');
		this.get ('/version', 'basic', 'version');
	});

	// apply the routing configuration
	dispatcher.finish(app);

./controllers/basic.js

	module.exports = {
		beforeEach : function(req, res, next) {
			if(doSomeImportantCheck()) return next();
			
			res.send('Important check failed');	
		}
		hello : function(req, res) {
			res.send('Hello my friend');
		},

		concat : function(req, res) {
			res.send(req.params.a + req.params.b);
		},

		version: function*(req, res) {
			try {
				var data = yield somePromise();
				var version = yield anotherPromise(data);
				res.send(version);	
			}
			catch(err) {
				res.send(500, 'Something went wrong while getting the version!');
			}
		}
	}

Example 2: with options

ERD supports two options

  • path (where to find the controllers)
  • parseControllerName (allows you to adjust the lookup algorithm)

Example directory layout ./server.js ./api/basicController.js

./server.js

	// ...

	dispatcher.configure({
		path: 'api',
		parseControllerName: function(name) {
			return name.toLowerCase() + 'Controller';
		}
	});

	dispatcher.map(function() {
		this.get('/basic/hello', 'basic', 'hello');
	});

	dispatcher.finish(app);

Example 3: nested routing

ERD supports nested routing which might be useful for authentication checks and alike. All handlers inside the new map() will run through the before check first.

./server.js

	// ...

	dispatcher.map(function() {
		this.get('/version', 'basic', 'version');
		this.get('/auth/login', 'auth', 'login');
		this.before(function(req, res, next) {
			if (numberCrunch.wobble(req) > 18) {
				return res.send("no can do sir");
			}
			return next();
		}).map(function() {
			this.get('/auth/logout', 'auth', 'logout');
			this.get('/word/domination/plan', 'internal', 'plan');
		});
	});