compound
Version:
CompoundJS - MVC framework for NodeJS
12 lines (10 loc) • 350 B
text/coffeescript
express = require 'express'
module.exports = (compound) ->
app = compound.app
app.configure 'development', ->
app.enable 'watch'
app.enable 'log actions'
app.enable 'env info'
app.enable 'force assets compilation'
app.set 'translationMissing', 'display'
app.use express.errorHandler dumpExceptions: true, showStack: true