dnish / meteor-rtcmulticonnection

Just a simple demo how to include RTCMultiConnection within a Meteor application.
4 stars 0 forks source link

Signalling server #2

Open msj121 opened 8 years ago

msj121 commented 8 years ago

A feature request to show how to use socket.io for signalling. I see you mention using it, but the code uses the default server.

dnish commented 8 years ago

On your server:

git clone https://github.com/muaz-khan/RTCMultiConnection.git

...and then you can do

node server.js

This will start your own socket.io server for RTCMultiConnection.

msj121 commented 8 years ago

Oh so nothing in meteor then? Interesting. Run it outside of meteor?

Thanks.

Last question. Some of rtcMulticonndction examples (simple etc..) just include the rtcmulticonnection.js as a JavaScript external source file and still open and connect with it. Is there a reason to go through all of the headache of making a package and importing etc... Instead of just using a cdn link? Easier to update code version I guess.