|
|
|
|
|
by srpeck
4403 days ago
|
|
I looked for a library for a similar WebRTC project. All of the libraries I found contained superfluous functionality, as I was only interested in data channels and did not want to be locked in by a particular third party. I ended up rolling my own; the WebRTC API is simple enough [1] and there is some example code from Google that points the right direction [2]. Additionally, Socket.io makes for a convenient signalling server prototype, though it is overkill. [1] http://dev.w3.org/2011/webrtc/editor/webrtc.html [2] https://bitbucket.org/webrtc/codelab |
|