Created
November 1, 2012 20:04
-
-
Save dangerbell/3996100 to your computer and use it in GitHub Desktop.
Example Express app file
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
express = require 'express' | |
app = express(); | |
# Configure | |
require('./config')(app) | |
# Routes | |
require('./routes')(app) | |
module.exports = app |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment