Skip to content

Instantly share code, notes, and snippets.

@nelsonsilva
Created August 30, 2011 09:53
Show Gist options
  • Save nelsonsilva/1180573 to your computer and use it in GitHub Desktop.
Save nelsonsilva/1180573 to your computer and use it in GitHub Desktop.
Node.js httpd
var http = require('http');
http.createServer(function (req, res) {
res.writeHeader(200, {'Content-Type': 'text/plain'});
res.end('Hello World');
}).listen(8000);
console.log('Server running at http://127.0.0.1:8000/');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment