We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf114df commit 51bbc9bCopy full SHA for 51bbc9b
index.js
@@ -2,6 +2,8 @@ var http = require('http');
2
3
var server = http.createServer(function(request, response) {
4
5
+ console.log("Handling Request");
6
+
7
response.writeHead(200, {"Content-Type": "text/plain"});
8
response.end("Hello World!");
9
0 commit comments