summaryrefslogtreecommitdiffstats
path: root/Services/nodejs/app/app.js
blob: aebd6b8898964d811c4ea3f33b6ec5c1a163fab7 (plain)
1
2
3
4
5
6
7
8
9
10
// Load the http module to create an http server.
var http = require('http');

var server = http.createServer(function (request, response) {
  response.writeHead(200, {"Content-Type": "text/plain"});
  response.end("Hello World\n");
});
server.listen(8000);

console.log("Server running at http://127.0.0.1:8000/");