Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my node.js express application I have app.js that has a few common routes. Then in a wf.js file I would like to define a few more routes. How can I get app.js to recognize other route handlers defined in wf.js file? A simple require does not seem to work.

share|improve this question

5 Answers

up vote 67 down vote accepted

Check this official example:

https://github.com/visionmedia/express/tree/master/examples/route-separation

EDIT

If you want to put the routes in a separate file, for example routes.js

You can create the routes.js file in this way

module.exports = function(app){

    app.get('/login', function(req, res){
        res.render('login', {
            title: 'Express Login'
        });
    });

    //other routes..
}

And then you can require it from app.js passing the app object in this way:

require('./routes')(app);
share|improve this answer
1  
Exactly what I was looking for. Thanks. – rafidude May 19 '11 at 18:11
1  
Actually, the author (TJ Holowaychuck) gives a better approche: vimeo.com/56166857 – avetis.kazarian Mar 23 at 9:36

Building on @ShadowCloud 's example I was able to dynamically include all routes in a sub directory.

routes/index.js

var fs = require('fs');

module.exports = function(app){
    fs.readdirSync(__dirname).forEach(function(file) {
        if (file == "index.js") return;
        var name = file.substr(0, file.indexOf('.'));
        require('./' + name)(app);
    });
}

Then placing route files in the routes directory like so:

routes/test1.js

module.exports = function(app){

    app.get('/test1/', function(req, res){
        //...
    });

    //other routes..
}

Repeating that for as many times as I needed and then finally in app.js placing

require('./routes')(app);
share|improve this answer
i like this approach better, allows to add new routes without having to add anything specific to the main app file. – Jason Miesionczek Sep 8 '11 at 4:00
1  
Nice, I use this approach as well, with an additional check of the file extension as I have faced issues with swp files. – Geekfish Jan 26 '12 at 23:53
You also don't have to use readdirSync w/ this, readdir works fine. – Paul May 22 '12 at 17:09
3  
Is there any overhead in using this method to read the files in the directory vs. just requiring the routes in your app.js file? – Abadaba Nov 29 '12 at 3:08
I'd also like to know the same as @Abadaba. When does this get evaluated, when you launch the server or on every request? – bababa Mar 7 at 0:02
show 1 more comment

And build yet more on the previous answer, this version of routes/index.js will ignore any files not ending in .js (and itself)

var fs = require('fs');

module.exports = function(app) {
    fs.readdirSync(__dirname).forEach(function(file) {
        if (file === "index.js" || file.substr(file.lastIndexOf('.') + 1) !== 'js')
            return;
        var name = file.substr(0, file.indexOf('.'));
        require('./' + name)(app);
    });
}
share|improve this answer
Thanks for this. I had someone on a Mac adding .DS_Store files and it was messing everything up. – Trevor Senior Nov 23 '12 at 21:04

I guess you're looking for a better modular approach, such as described by TJ himself:

http://vimeo.com/56166857

share|improve this answer

This is possibly the most awesome stack overflow question/answer(s) ever. I love Sam's/Brad's solutions above. Thought I'd chime in with the async version that I implemented:

function loadRoutes(folder){
    if (!folder){
        folder = __dirname + '/routes/';
    }

    fs.readdir(folder, function(err, files){
        var l = files.length;
        for (var i = 0; i < l; i++){
            var file = files[i];
            fs.stat(file, function(err, stat){
                if (stat && stat.isDirectory()){
                    loadRoutes(folder + '/' + file + '/');
                } else {
                    var dot = file.lastIndexOf('.');
                    if (file.substr(dot + 1) === 'js'){
                        var name = file.substr(0, dot);

                        // I'm also passing argv here (from optimist)
                        // so that I can easily enable debugging for all
                        // routes.
                        require(folder + name)(app, argv);
                    }
                }
            });
        }
    });
}

My directory structure is a little different. I typically define routes in app.js (in the root directory of the project) by require-ing './routes'. Consequently, I'm skipping the check against index.js because I want to include that one as well.

EDIT: You can also put this in a function and call it recursively (I edited the example to show this) if you want to nest your routes in folders of arbitrary depth.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.