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 !
