Skip to content

Commit

Permalink
Updated web.js
Browse files Browse the repository at this point in the history
  • Loading branch information
amclark committed Jul 8, 2013
1 parent 90fd58e commit 5cc6083
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 5cc6083

Please sign in to comment.