We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bb129c2 + b11d5a1 commit 7827500Copy full SHA for 7827500
index.js
@@ -3,11 +3,11 @@ var http = require('http');
3
var server = http.createServer(function(request, response) {
4
5
response.writeHead(200, {"Content-Type": "text/plain"});
6
- response.end("Hello Azure!");
+ response.end("Hello World!");
7
8
});
9
10
var port = process.env.PORT || 1337;
11
server.listen(port);
12
13
-console.log("Server running at http://localhost:%d", port);
+console.log("Server running at http://localhost:%d", port);
0 commit comments