Skip to content

Commit

Permalink
Merge pull request scotch-io#2 from tdykstra/patch-1
Browse files Browse the repository at this point in the history
restore Hello World
  • Loading branch information
cephalin authored Jun 1, 2017
2 parents bb129c2 + b11d5a1 commit 7827500
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
console.log("Server running at http://localhost:%d", port);

0 comments on commit 7827500

Please sign in to comment.