Skip to content

Instantly share code, notes, and snippets.

@ben-ng
Created March 14, 2014 11:24
Show Gist options
  • Save ben-ng/9545990 to your computer and use it in GitHub Desktop.
Save ben-ng/9545990 to your computer and use it in GitHub Desktop.
var http = require('http')
, fs = require('fs');
http.createServer(function(request, response){
response.writeHead(200, {'Content-Type': 'text/html' });
fs.createReadStream('index.html').pipe(response);
}).listen(8080);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment