Skip to content

Instantly share code, notes, and snippets.

@grifdail
Created November 18, 2013 16:36
Show Gist options
  • Select an option

  • Save grifdail/7530934 to your computer and use it in GitHub Desktop.

Select an option

Save grifdail/7530934 to your computer and use it in GitHub Desktop.
micro file server for node & expressJS
var express = require('express');
var app = express();
app.use("/",express.static(__dirname + '/'));
app.listen(8080);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment