diff --git a/index.js b/index.js index fbbd40f98..164a07aa6 100644 --- a/index.js +++ b/index.js @@ -2,6 +2,6 @@ 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.write('HELLO WORLD'); //write a response to the client res.end(); //end the response }).listen(80); //the server object listens on port 80