Created
May 2, 2016 19:22
-
-
Save fluffywaffles/688509ce34889df35e0cff0006fec4b3 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
var express = require('express') | |
, app = express(); | |
app.use(express.logger('dev')); | |
app.use(express.static(__dirname + "/dist")); | |
app.listen(process.env.PORT || 5000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment