7 ms·
whats an example of a signaling server that could be used with something like this?
by hnwh 14y ago
whats an example of a signaling server that could be used with something like this?
- hazelcough 14y agoCheck out peerjs.com. Provides a cloud server and has an open source signaling server. Edit: this is a data solution for now though.
- chad_oliver 14y agoI 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.
- HenrikJoreteg 14y agoHere it is, it's really simple: https://github.com/andyet/signalmaster https://github.com/andyet/signalmaster It's what we use for this (I wrote it).