Skip to content

Instantly share code, notes, and snippets.

@jwkidd3
Created April 25, 2018 01:57
Show Gist options
  • Save jwkidd3/c97f5156b3aa53b035654c4e1e682b79 to your computer and use it in GitHub Desktop.
Save jwkidd3/c97f5156b3aa53b035654c4e1e682b79 to your computer and use it in GitHub Desktop.
var http = require('http');
var handleRequest = function(request, response) {
console.log('Received request for URL: ' + request.url);
response.writeHead(200);
response.end('Hello World!');
};
var www = http.createServer(handleRequest);
www.listen(8080);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment