Skip to content

Instantly share code, notes, and snippets.

@patrickandre
Created January 19, 2017 16:41
Show Gist options
  • Save patrickandre/0f508e50cab66d61c61e1e3888e9cc47 to your computer and use it in GitHub Desktop.
Save patrickandre/0f508e50cab66d61c61e1e3888e9cc47 to your computer and use it in GitHub Desktop.
const http = require('http');
const server = http.createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "text/html"});
response.write('<html>Hello World</html>');
response.end();
});
server.listen(5000);
console.log('Listening on port 5000');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment