0.5.5 • Published 12 years ago

simple-controllers v0.5.5

Weekly downloads
19
License
-
Repository
github
Last release
12 years ago

simple-controllers

Add to Express a simple controllers management.

Example

// filename: app.js
...
var controllers = require('simple-controllers);
...
app.configure(function() {
    ...
    // Specify the path of the controllers
    app.set('controllers', __dirname + '/controllers');
    ...
});
var auth_func = function(req, res, next) {
    ...
    next();
}
...
var result = app.controllers(auth_func);
console.dir(result);
0.5.5

12 years ago

0.5.4

12 years ago

0.5.3

12 years ago

0.5.0

12 years ago