Skip to content

Commit

Permalink
Updated dependencies from express 2.5.1 to express 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Kutik committed Feb 6, 2013
1 parent b1aaef0 commit 66bc37e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions example/server.js
@@ -1,6 +1,8 @@
var app = require('express').createServer();
app.listen(8000);
var webRTC = require('webrtc.io').listen(app);
var app = require('express')();
var server = server = require('http').createServer(app);
var webRTC = require('webrtc.io').listen(server);

server.listen(8000);



Expand Down Expand Up @@ -53,4 +55,4 @@ webRTC.rtc.on('chat_msg', function(data, socket) {
}
}
}
});
});
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -8,7 +8,7 @@
"dependencies": {
"webrtc.io": "latest",
"webrtc.io-client": "latest",
"express": "2.5.1",
"express": "3.1.0",
"ws": "latest"
},
"subdomain": "MultiWebRTC",
Expand Down

0 comments on commit 66bc37e

Please sign in to comment.