Skip to content

Instantly share code, notes, and snippets.

@TuanMinPay
Created August 29, 2018 03:52
Show Gist options
  • Save TuanMinPay/0747ebf8f36ebd3d7c2281dbdb9a42f4 to your computer and use it in GitHub Desktop.
Save TuanMinPay/0747ebf8f36ebd3d7c2281dbdb9a42f4 to your computer and use it in GitHub Desktop.
Created by Ngô Văn Tuấn
var http = require("http");
http.createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello World");
response.end();
}).listen(8888);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment