Skip to content

Instantly share code, notes, and snippets.

@fluffywaffles
Created May 2, 2016 19:22
Show Gist options
  • Save fluffywaffles/688509ce34889df35e0cff0006fec4b3 to your computer and use it in GitHub Desktop.
Save fluffywaffles/688509ce34889df35e0cff0006fec4b3 to your computer and use it in GitHub Desktop.
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