Skip to content

Instantly share code, notes, and snippets.

@bpevs
Last active August 29, 2015 14:17
Show Gist options
  • Save bpevs/6ac0bf07a18f9fb830b5 to your computer and use it in GitHub Desktop.
Save bpevs/6ac0bf07a18f9fb830b5 to your computer and use it in GitHub Desktop.
A simple Express server for static files
var express = require('express');
var app = express();
app.use(express.static(__dirname + '/public'));
app.listen(process.env.PORT || 3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment