I'm using simple-peer
to create a small video calling app using NodeJS
, SocketIO
and Angular
I'm trying to implement full-mesh
here. I have a peer initialtor
which will initiate the signal on loop.
My code is as below.
const peer = new SimplePeer({
initiator: true,
trickle: false,
stream,
});
peer.on("signal", signal => {
console.log(userToSignal, "signal-callerID");
this.peerService.emit("sending signal", { userToSignal, callerID, signal })
})
This function will be in loop. when a new user conenct, It'll send the signal to that user, My problem is, peer.on("signal", signal =>
event repeats itself even if there is only 1 user conencted, its making likle 11 requests on 1 peer create. whats the issue here and how can i fix it?
I'm refering to this code and trying to implement this in angular.
I got the same issue. Just try with simple peer library version 9.6.2. It works!!!!!