From d039043c38b92a2fdc2b79213f83a2f2b84a080a Mon Sep 17 00:00:00 2001 From: startxfr Date: Sun, 17 May 2015 22:55:54 +0200 Subject: change in nodejs template --- Services/nodejs/app/app.js | 4 ---- 1 file changed, 4 deletions(-) (limited to 'Services/nodejs/app') diff --git a/Services/nodejs/app/app.js b/Services/nodejs/app/app.js index 1dd5446..aebd6b8 100644 --- a/Services/nodejs/app/app.js +++ b/Services/nodejs/app/app.js @@ -1,14 +1,10 @@ // Load the http module to create an http server. var http = require('http'); -// Configure our HTTP server to respond with Hello World to all requests. var server = http.createServer(function (request, response) { response.writeHead(200, {"Content-Type": "text/plain"}); response.end("Hello World\n"); }); - -// Listen on port 8000, IP defaults to 127.0.0.1 server.listen(8000); -// Put a friendly message on the terminal console.log("Server running at http://127.0.0.1:8000/"); \ No newline at end of file -- cgit v1.2.3