Skip to content

Instantly share code, notes, and snippets.

@Tug
Created January 6, 2014 17:30
Show Gist options
  • Save Tug/8286292 to your computer and use it in GitHub Desktop.
Save Tug/8286292 to your computer and use it in GitHub Desktop.
var express = require("express"),
app = express();
app.configure(function(){
app.use(express.static(__dirname + '/public'));
});
app.listen(13000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment