Created
January 19, 2017 16:41
-
-
Save patrickandre/0f508e50cab66d61c61e1e3888e9cc47 to your computer and use it in GitHub Desktop.
Revisions
-
patrickandre created this gist
Jan 19, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ 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');