Skip to content

Instantly share code, notes, and snippets.

@robbennet
Created January 10, 2016 01:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robbennet/ab45891948d80a74012f to your computer and use it in GitHub Desktop.
Save robbennet/ab45891948d80a74012f to your computer and use it in GitHub Desktop.
Serve static files from a directory.
var connect = require('connect');
var serveStatic = require('serve-static');
connect().use(serveStatic(__dirname)).listen(49974);
npm install connect serve-static
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment