Y
Hacker News
new
|
ask
|
show
|
jobs
by
hnwh
4853 days ago
whats an example of a signaling server that could be used with something like this?
3 comments
chad_oliver
4853 days ago
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.
link
HenrikJoreteg
4853 days ago
Here it is, it's really simple:
https://github.com/andyet/signalmaster
It's what we use for this (I wrote it).
link
hazelcough
4853 days ago
Check out peerjs.com. Provides a cloud server and has an open source signaling server.
Edit: this is a data solution for now though.
link