How to build a network using peer-to-peer connections from multiple peers?

I want to create a network between several peers using datachannel WebRTC data.

What is the best topology used for effective communication and video conferencing?

Now what am I doing?

If 10 peers are alive, I create 10 peers on each peer.

There are several issues with this approach.

If a peer is connected, which must send an offer to each existing partner and it must respond to each one-time access offer. So there is a problem.

Is there an alternative?

What would I like to do?

I want to implement a grid topology, that is, create a peer-to-peer connection that can communicate with each other.

How can i do this?

+4
javascript jquery html5 webrtc peer
source share

No one has answered this question yet.

See similar questions:

8
How does WebRTC handle many-to-many connections?

or similar:

7728
How to redirect to another web page?
7649
How do JavaScript locks work?
7494
How to remove a specific element from an array in JavaScript?
7432
How to check if a string contains a substring in JavaScript?
7428
How to check if an element is hidden in jQuery?
5722
How to remove a property from a JavaScript object?
5129
How to return a response from an asynchronous call?
4829
How to include a javascript file in another javascript file?
4345
How to check if checkbox is checked in jQuery?
1966
How can I select an item with multiple classes in jQuery?

All Articles