Merge pull request #290 from raphamorim/master

Support/use Promises
This commit is contained in:
Christopher Chedeau
2015-03-26 18:52:44 -07:00

View File

@@ -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;