Skip to content

Instantly share code, notes, and snippets.

@bigfleet
Created July 15, 2010 21:29
Show Gist options
  • Select an option

  • Save bigfleet/477559 to your computer and use it in GitHub Desktop.

Select an option

Save bigfleet/477559 to your computer and use it in GitHub Desktop.
// Load the http module to create an http server.
var http = require('http');
// Configure our HTTP server to respond with Hello World to all requests.
var server = http.createServer(function (request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello World\n");
response.close();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment