Skip to content

Instantly share code, notes, and snippets.

@Mic92
Created May 7, 2012 20:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mic92/2630108 to your computer and use it in GitHub Desktop.
Save Mic92/2630108 to your computer and use it in GitHub Desktop.
node
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.end("Hello World\n");
});
// Listen on port 8000, IP defaults to 127.0.0.1
server.listen(8787);
// Put a friendly message on the terminal
console.log("Server running at http://higgsboson:8787/");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment