I'm confused as to why they didn't release a signaling server as well. Most servers I've seen for this are just simple WebSocket relays. Are they expecting to charge you to help implement the server? Or did they just think it was too complicated for developers to set up?
Does anyone have recommendations for a Node module that'll do WebRTC? I've looked at a few, but would love to get opinions from actual humans who've used them.
Do you mean as a WebRTC client, rather than a signaling server?
I think for that we'd need an SCTP (and ICE, and most of libjingle) library in node, and I don't think node knows how to speak SCTP yet. Sure would be nice if it did -- would love to hear if anyone knows someone working on this.
I used another lib [1] to create something very similar [2] last weekend. I needed an excuse to play around with node.js/express/socket.io and couldn't resist after I saw the WebRTC Chrome/Firefox demo.
webkitPeerConnection00 isn't fully compatible with webkitRTCPeerConnection. Unless they add specialized code to work with PC00 (IMO not worth the effort), it likely won't work right.
I tried to run the example but it's not finding simplewebrtc.com/latest.js Anybody got the example to run? Will it work with the latest chrome or only the nightly?
I implemented one for work. Basically, you have a websocket for each client, and any message received from client X is transmitted to clients Y and Z. There's not much to it at all; the magic happens client-side.