Skip to content

Commit

Permalink
Merge pull request facebook#290 from raphamorim/master
Browse files Browse the repository at this point in the history
Support/use Promises
  • Loading branch information
vjeux committed Mar 27, 2015
2 parents bd8fa86 + 10c2205 commit 9c2dbbf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions website/server/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ var app = connect()

var portToUse = port || 8080;
var server = http.createServer(app);
server.listen(portToUse);
console.log('Open http://localhost:' + portToUse + '/react-native/_index.html');
server.listen(portToUse, function(){
console.log('Open http://localhost:' + portToUse + '/react-native/index.html');
});
module.exports = server;

0 comments on commit 9c2dbbf

Please sign in to comment.