Skip to content

Instantly share code, notes, and snippets.

@kamito
Created June 6, 2011 15:02
Show Gist options
  • Select an option

  • Save kamito/1010417 to your computer and use it in GitHub Desktop.

Select an option

Save kamito/1010417 to your computer and use it in GitHub Desktop.
var http = require('http');
http.createServer(function(request, response) {
response.writeHead(200, {'Content-Type':'text/html'});
response.end('<h1>Hello! node.js</h1>');
}).listen(8081);
console.log('Server running at http://127.0.0.1:8081/');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment