summaryrefslogtreecommitdiffstats
path: root/Services/nodejs/app
diff options
context:
space:
mode:
authorstartxfr <clarue@startx.fr>2015-05-17 22:55:54 +0200
committerstartxfr <clarue@startx.fr>2015-05-17 22:55:54 +0200
commitd039043c38b92a2fdc2b79213f83a2f2b84a080a (patch)
tree4d9193619fa2c4cc2922528b605d22e82f71e469 /Services/nodejs/app
parent85ca05debc4d6326a20f83573fce7dfcfd52a791 (diff)
downloadphpmyadmin-d039043c38b92a2fdc2b79213f83a2f2b84a080a.tar.gz
phpmyadmin-d039043c38b92a2fdc2b79213f83a2f2b84a080a.tar.bz2
phpmyadmin-d039043c38b92a2fdc2b79213f83a2f2b84a080a.tar.xz
phpmyadmin-d039043c38b92a2fdc2b79213f83a2f2b84a080a.zip
change in nodejs template
Diffstat (limited to 'Services/nodejs/app')
-rw-r--r--Services/nodejs/app/app.js4
1 files changed, 0 insertions, 4 deletions
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