Created
June 7, 2014 17:13
-
-
Save joerx/507094676a095bb719a5 to your computer and use it in GitHub Desktop.
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
| var express = require('express'); | |
| var app = express(); | |
| // ... | |
| module.exports = app; |
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
| var app = require('./app'); | |
| app.set('port', process.env.PORT || 3000); | |
| app.listen(app.get('port'), function() { | |
| console.log('Express server listening on port ' + app.get('port')); | |
| }); |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Setting up express.js separating app bootstrapping and server startup.