Created
April 21, 2013 12:42
-
-
Save vgheri/5429472 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ******************************************************* | |
// expressjs template | |
// | |
// assumes: npm install express | |
// defaults to jade engine, install others as needed | |
// | |
// assumes these subfolders: | |
// public/ | |
// public/javascripts/ | |
// public/stylesheets/ | |
// views/ | |
// | |
var express = require('express'); | |
var app = express(); | |
var AccountHandler = require('./handlers/AccountHandler'); | |
var ShoppingListHandler = require('./handlers/ShoppingListHandler'); | |
var routes = require('./Routes'); | |
var fs = require('fs'); | |
var expressLogFile = fs.createWriteStream('./logs/express.log', {flags: 'a'}); | |
// Configuration | |
app.configure(function(){ | |
app.use(express.logger({stream: expressLogFile})); | |
app.use(express.bodyParser()); | |
app.use(express.methodOverride()); | |
app.use(app.router); | |
app.use(express.static(__dirname + '/public')); | |
}); | |
app.configure('development', function(){ | |
app.use(express.errorHandler({ dumpExceptions: true, showStack: true })); | |
}); | |
app.configure('production', function(){ | |
app.use(express.errorHandler()); | |
}); | |
var handlers = { | |
account: new AccountHandler(), | |
list: new ShoppingListHandler() | |
}; | |
function start() { | |
routes.setup(app, handlers); | |
var port = process.env.PORT || 3000; | |
app.listen(port); | |
console.log("Express server listening on port %d in %s mode", port, app.settings.env); | |
} | |
// ******************************************************* | |
exports.start = start; | |
exports.app = app; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment