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.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/Services/nodejs/app.js b/Services/nodejs/app.js
new file mode 100644
index 0000000..1dd5446
--- /dev/null
+++ b/Services/nodejs/app.js
@@ -0,0 +1,14 @@
+// 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