Loops through controllers in a given directory and sets them up for use in your web framework.
npm install node-controller-loader --save
var controllerLoader = require('node-controller-loader');
var app = new ExpressApplicationOrSimilar();
controllerLoader.load(app, __dirname + '/controllers', function(){
app.createServer();
});