Skip to content

Commit

Permalink
Update web.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Jul 12, 2013
1 parent 950a10a commit 3e0799e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ var express = require('express');
var app = express.createServer(express.logger());

app.get('/', function(request, response) {
response.send('Hello World!');
response.send('Hello World 2!');
});

var port = process.env.PORT || 5000;
app.listen(port, function() {
console.log("Listening on " + port);
});
});

0 comments on commit 3e0799e

Please sign in to comment.