diff --git a/index.js b/index.js index fbbd40f98..ac54aa70d 100644 --- a/index.js +++ b/index.js @@ -1,7 +1,5 @@ var http = require('http'); - -//create a server object: http.createServer(function (req, res) { - res.write('A Monk in Cloud'); //write a response to the client - res.end(); //end the response -}).listen(80); //the server object listens on port 80 + res.write('Hello World'); + res.end(); +}).listen(process.env.PORT || 5000);