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

I'm using the ExpressJS web framework for NodeJS.

People using ExpressJS put their environments (development, production, test ...), their routes ... on the app.js. I think that it's not a beautiful way because when you have a big application, app.js is too big !

I would like to have this structure directories :

| my-application
| -- app.js
| -- config/
     | -- environment.js
     | -- routes.js

Here my code :

app.js

var express = require('express');
var app = module.exports = express.createServer();

require('./config/environment.js')(app, express);
require('./config/routes.js')(app);

app.listen(3000);

config/environment.js

module.exports = function(app, express){
    app.configure(function() {
    app.use(express.logger());
    });

    app.configure('development', function() {
    app.use(express.errorHandler({
        dumpExceptions: true,
        showStack: true
    }));
    });

    app.configure('production', function() {
    app.use(express.errorHandler());
    });
};

config/routes.js

module.exports = function(app) {
    app.get('/', function(req, res) {
    res.send('Hello world !');
    });
};

My code works well and I think that the structure of the directories is beautiful. However, the code had to be adapted and I'm not sure that it's good/beautiful.

Is it better to use my structure of directories and adapt the code or simply use one file (app.js) ?

Thanks for your advices !

share|improve this question
Are the performance issues of doing it this way still lurking around? I remember reading somewhere (maybe the express group) that when you separate everything like this you lose a ton of performance. Something like your reqs/sec will drop by a noticeable amount, almost as if it were a bug. – AntelopeSalad Apr 27 '11 at 21:06
It will be interesting if you find again the article ;) – Sandro Munda Apr 28 '11 at 6:59
It was from the Express Google group. Here's the link: groups.google.com/group/express-js/browse_thread/thread/… – AntelopeSalad Apr 28 '11 at 7:46
18  
nope this is very untrue – tjholowaychuk Sep 8 '11 at 14:37

9 Answers

up vote 56 down vote accepted

Config

What you are doing is fine. I like to have my own config namespace set up in a top-level config.coffee file with a nested namespace like this.

#Set the current environment to true in the env object
currentEnv = process.env.NODE_ENV or 'development'
exports.appName = "MyApp"
exports.env =
  production: false
  staging: false
  test: false
  development: false
exports.env[currentEnv] = true
exports.log =
  path: __dirname + "/var/log/app_#{currentEnv}.log"
exports.server =
  port: 9600
  #In staging and production, listen loopback. nginx listens on the network.
  ip: '127.0.0.1'
if currentEnv not in ['production', 'staging']
  exports.enableTests = true
  #Listen on all IPs in dev/test (for testing from other machines)
  exports.server.ip = '0.0.0.0'
exports.db =
  URL: "mongodb://localhost:27017/#{exports.appName.toLowerCase()}_#{currentEnv}"

This is friendly for sysadmin editing. Then when I need something, like the DB connection info, it`s

require('./config').db.URL

Routes/Controllers

I like to leave my routes with my controllers and organize them in an app/controllers subdirectory. Then I can load them up and let them add whatever routes they need.

In my app/server.coffee coffeescript file I do:

[
  'api'
  'authorization'
  'authentication'
  'domains'
  'users'
  'stylesheets'
  'javascripts'
  'tests'
  'sales'
].map (controllerName) ->
  controller = require './controllers/' + controllerName
  controller.setup app

So I have files like:

app/controllers/api.coffee
app/controllers/authorization.coffee
app/controllers/authentication.coffee
app/controllers/domains.coffee

And for example in my domains controller, I have a setup function like this.

exports.setup = (app) ->
  controller = new exports.DomainController
  route = '/domains'
  app.post route, controller.create
  app.put route, api.needId
  app.delete route, api.needId
  route = '/domains/:id'
  app.put route, controller.loadDomain, controller.update
  app.del route, controller.loadDomain, exports.delete
  app.get route, controller.loadDomain, (req, res) ->
    res.sendJSON req.domain, status.OK

Views

Putting views in app/views is becoming the customary place. I lay it out like this.

app/views/layout.jade
app/views/about.jade
app/views/user/EditUser.jade
app/views/domain/EditDomain.jade

Static Files

Go in a public subdirectory.

Github/Semver/NPM

Put a README.md markdown file at your git repo root for github.

Put a package.json file with a semantic version number in your git repo root for NPM.

share|improve this answer
1  
Hey Peter ! I really like this approach you're going for. I'm working on building on an express project and I'd really want to do things the right way than just to hack it up and put it around. Would be superb if you had a sample repo on github and/or a blog post on it. – suVasH..... Apr 20 '12 at 22:36
@suVasH..... I'll see if I can throw something together at some point. – Peter Lyons Apr 23 '12 at 4:56
Yeah, i agree, i'd love to read more on this approach! – Scotty Apr 30 '12 at 13:10
3  
This repo has a bunch of patterns you can use as a reference: github.com/focusaurus/peterlyons.com – Peter Lyons Apr 30 '12 at 15:11

I think it's a great way to do it. Not limited to express but I've seen quite a number of node.js projects on github doing the same thing. They take out the configuration parameters + smaller modules (in some cases every URI) are factored in separate files.

I would recommend going through express-specific projects on github to get an idea. IMO the way you are doing is correct.

share|improve this answer

I like to use a global "app", rather than exporting a function etc

share|improve this answer

Well I put my routes as a json file, that I read at the beginning, and in a for-loop in app.js set up the routes. The route.json includes which view that should be called, and the key for the values that will be sent into the route.
This works for many simple cases, but I had to manually create some routes for special cases.

share|improve this answer

I don't think it's a good approach to add routes to config. A better structure could be smth like that:

application/
| - app.js
| - config.js
| - public/ (assets - js, css, images)
| - views/ (all your views files)
| - libraries/ (you can also call it modules/ or routes/)
    | - users.js
    | - products.js
    | - etc...

So products.js and users.js will contain all your routes will all logic within.

share|improve this answer

This may be of interest:

https://github.com/flatiron/nconf

Hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging.

share|improve this answer

Check out https://github.com/hgarcia/node-resources, a tiny library that offers a more modularized way to structure express (and restify) applications.

share|improve this answer

I have written a post exactly about this matter. It basically makes use of a routeRegistrar that iterates through files in the folder /controllers calling its function init. Function init takes the express app variable as a parameter so you can register your routes the way you want.

More details/full article: http://ec2-54-232-84-48.sa-east-1.compute.amazonaws.com/structuring-a-node-js-web-application-with-express/

var fs = require("fs");
var express = require("express");
var app = express();

var controllersFolderPath = __dirname + "/controllers/";
fs.readdirSync(controllersFolderPath).forEach(function(controllerName){
    if(controllerName.indexOf("Controller.js") !== -1){
        var controller = require(controllersFolderPath + controllerName);
        controller.init(app);
    }
});

app.listen(3000);
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.