summaryrefslogtreecommitdiffstats
path: root/Services/nodejs/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'Services/nodejs/app.js')
-rw-r--r--Services/nodejs/app.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/Services/nodejs/app.js b/Services/nodejs/app.js
index 6a0da10..ea1bcca 100644
--- a/Services/nodejs/app.js
+++ b/Services/nodejs/app.js
@@ -1,10 +1,8 @@
// 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 is running"); \ No newline at end of file