From b11d5a1161ce003ba1a3005bce3a498ea1b7c44c Mon Sep 17 00:00:00 2001 From: Tom Dykstra Date: Thu, 1 Jun 2017 09:27:51 -0700 Subject: [PATCH] restore Hello World --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 183aece7..f085ee2a 100644 --- a/index.js +++ b/index.js @@ -3,11 +3,11 @@ var http = require('http'); var server = http.createServer(function(request, response) { response.writeHead(200, {"Content-Type": "text/plain"}); - response.end("Hello Azure!"); + response.end("Hello World!"); }); var port = process.env.PORT || 1337; server.listen(port); -console.log("Server running at http://localhost:%d", port); \ No newline at end of file +console.log("Server running at http://localhost:%d", port);