Skip to content

Instantly share code, notes, and snippets.

@TuanMinPay
Created August 31, 2018 05:49
Show Gist options
  • Save TuanMinPay/801045bd29148aeb0ba7fd05ef539085 to your computer and use it in GitHub Desktop.
Save TuanMinPay/801045bd29148aeb0ba7fd05ef539085 to your computer and use it in GitHub Desktop.
var http = require("http");
function onRequest(request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello World");
response.end();
}
http.createServer(onRequest).listen(8888);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment