Skip to content

Commit

Permalink
Update server.js
Browse files Browse the repository at this point in the history
first release
  • Loading branch information
hienchu committed Mar 7, 2014
1 parent 5b3163e commit 362c0c9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ http.createServer(function (req, res) {

res.writeHead(200, {'Content-Type': 'text/plain'});
res.write("Welcome to Node.js on OpenShift!\n\n");
res.write("This is my first release from GitHub!");
res.end("Your IP address seems to be " + addr + "\n");
}).listen(port, ipaddr);
console.log("Server running at http://" + ipaddr + ":" + port + "/");

0 comments on commit 362c0c9

Please sign in to comment.