Skip to content

Instantly share code, notes, and snippets.

@alexkravets
Created June 1, 2013 15:26
Show Gist options
  • Save alexkravets/5690743 to your computer and use it in GitHub Desktop.
Save alexkravets/5690743 to your computer and use it in GitHub Desktop.
Localhost web server in a few lines using Node.js and Connect.
var connect = require("connect");
var app = connect()
.use(connect.logger('dev'))
.use(connect.static('www'))
.listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment