Created
April 12, 2012 12:45
-
-
Save angelochen960/2366994 to your computer and use it in GitHub Desktop.
index.coffee
This file contains hidden or 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
express = require('express') | |
routes = require('./routes') | |
app = module.exports = express.createServer() | |
# Configuration | |
app.configure -> | |
app.set 'views', __dirname + '/views' | |
app.set 'view engine', 'jade' | |
app.use express.bodyParser() | |
app.use express.methodOverride() | |
app.use app.router | |
app.use express.static(__dirname + '/public') | |
app.configure 'development', -> | |
app.use express.errorHandler { dumpExceptions: true, showStack: true } | |
#app.configure 'production', -> app.use(express.errorHandler() | |
# Routes | |
app.get('/', routes.index) | |
app.listen 3000 | |
console.log "Express server listening on port %d in %s mode", app.address().port, app.settings.env |
This file contains hidden or 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
exports.index (req, res) -> | |
res.render 'index', { title: 'Express' } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment