Towards a WebRTC Mesh Network With RTCDataChannel [Livecoding]
In this livecoding session, we pick up where we left off last time, working on our WebRTC network that allows for peer-to-peer communication.
Join the DZone community and get the full member experience.
Join For FreeIt didn't work. We don't have a mesh network yet. But we're so close that I can almost smell it.
The ultimate goal is to build a JavaScript library that can connect arbitrary browsers through a mesh network using a sort of blockchain as the algorithm to ensure distributed data correctness. Why? Intellectual curiosity.
Previously, we figured out how to connect two browsers running on different computers with a video connection. A signaling server helps with the initial handshake, then the browsers communicate directly using WebRTC. No more server.
WebRTC also supports so-called data channels using RTCDataChannel.
It works like this:
- Use signaling server to establish a peer connection.
- Add a data channel to said connection.
- Send from each side.
Data can be anything. We're using "Hello World"
strings, for now, and we'll be using serialized JSON objects later. Rumors say you could send whole files.
This all sounds very simple. Even when you look at the code that's required.
We add a RTCDataChannel
to our peer connection and attach a bunch of event handlers. Errors for complaining, messages for printing, and we try to send a message when the channel opens.
The cool part is that we can attach this channel before a connection is fully established.
See, both clients finish with saying Data channel open
.
But no data is sent or received, and there's no error.
I suspect this is because while the data channel is open, the peer connection itself is not established. That pesky WebRTC lifecycle error about doing something or another in the wrong step.
This part used to work. Therefore, I must have broken something when deleting a bunch of code that seemed unnecessary.
We also generally spent a lot of time mucking around making this lifecycle more robust because it was hella flaky before.
Getting close!
Published at DZone with permission of Swizec Teller, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments