Skip to content

Instantly share code, notes, and snippets.

@harriha
Created November 18, 2012 14:51
Show Gist options
  • Save harriha/4105649 to your computer and use it in GitHub Desktop.
Save harriha/4105649 to your computer and use it in GitHub Desktop.
Share static web content with Node.js
// Save to a file server.js and 'node server.js'
var connect = require('connect');
connect.createServer(
connect.static(__dirname)
).listen(8080);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment