Skip to content

Instantly share code, notes, and snippets.

@64lines
Created June 28, 2017 16:06
Show Gist options
  • Select an option

  • Save 64lines/dac92c8fd98b682a88fa36f873b0e64d to your computer and use it in GitHub Desktop.

Select an option

Save 64lines/dac92c8fd98b682a88fa36f873b0e64d to your computer and use it in GitHub Desktop.
[NODE] Hello world server
// 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.end("Hello World\n");
});
// Listen on port 8000, IP defaults to 127.0.0.1
server.listen(8000);
// Put a friendly message on the terminal
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