Skip to content

Connect a browser to another browser

License

Unknown and 2 other licenses found

Licenses found

Unknown
LICENSE
Unknown
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

libp2p/js-libp2p-example-webrtc-private-to-private

Repository files navigation

@libp2p/example-webrtc-private-to-private

libp2p.io Discuss codecov CI

In libp2p terms a "private" node is one behind a NAT firewall that prevents it from being dialed externally.

This could be a browser, a node.js process or something else.

Nodes that support the libp2p WebRTC transport such as browsers can by dialed via this method even if they are behind a NAT.

When establishing a WebRTC connection, the two browsers must first exchange a series of messages that establish the required capabilities of the nodes (we only require RTC data channels, no video or audio), and their internet-facing addresses/ports.

This is referred to as the "SDP handshake". The WebRTC spec requires this to take place out-of-band, so libp2p performs the handshake via a Circuit Relay Server - this is another network node that has made some resources available for the good of the network.

When two browsers dial each other the following steps occur:

  1. The listener makes a reservation on a relay with a free slot
  2. The dialer obtains the listener's relay address
  3. The dialer dials the relay and specifies the listeners PeerId as part of the Circuit Relay HOP protocol
  4. The relay opens a stream on the listener as part of the Circuit Relay STOP protocol
  5. A virtual connection is created between the dialer and the listener via the relay
  6. The dialer opens a stream on the virtual connection to perform the SDP handshake
  7. SDP messages are exchanged
  8. A direct WebRTC connection is opened between the two browsers

At this point the browsers are directly connected and the relay plays no further part.

Running the Example

Build the @libp2p/example-webrtc-private-to-private package

Build example by calling npm i && npm run build in the repository root.

Running the Relay Server

For browsers to communicate, we first need to run a relay server:

npm run relay

The multiaddress the relay is listening on will be printed to the console. Copy one of them to your clipboard.

Running the Clients

In a separate console tab, start the web server:

npm start

A browser window will automatically open. Let's call this Browser A.

Using the copied multiaddrs from the relay server, paste it into the Remote MultiAddress input and click the Connect button. Browser A is now connected to the relay server.

Copy the multiaddr located after the Listening on message.

Now open a second tab with the url http://localhost:5173/, perhaps in a different browser or a private window. Let's call this Browser B.

Using the copied multiaddress from Listening on section in Browser A, paste it into the Remote MultiAddress input and click the Connect button.

The peers are now connected to each other.

Enter a message and click the Send button in either/both browsers and see the echo'd messages.

The output should look like:

Browser A

Dialing '/ip4/127.0.0.1/tcp/57708/ws/p2p/12D3KooWRqAUEzPwKMoGstpfJVqr3aoinwKVPu4DLo9nQncbnuLk'
Listening on /ip4/127.0.0.1/tcp/57708/ws/p2p/12D3KooWRqAUEzPwKMoGstpfJVqr3aoinwKVPu4DLo9nQncbnuLk/p2p-circuit/p2p/12D3KooW9wFiWFELqGJTbzEwtByXsPiHJdHB8n7Kin71VMYyERmC/p2p-circuit/webrtc/p2p/12D3KooW9wFiWFELqGJTbzEwtByXsPiHJdHB8n7Kin71VMYyERmC
Dialing '/ip4/127.0.0.1/tcp/57708/ws/p2p/12D3KooWRqAUEzPwKMoGstpfJVqr3aoinwKVPu4DLo9nQncbnuLk/p2p-circuit/p2p/12D3KooWBZyVLJfQkofqLK4op9TPkHuUumCZt1ybQrPvNm7TVQV9/p2p-circuit/webrtc/p2p/12D3KooWBZyVLJfQkofqLK4op9TPkHuUumCZt1ybQrPvNm7TVQV9'
Sending message 'helloa'
Received message 'helloa'
Received message 'hellob'

Browser B

Dialing '/ip4/127.0.0.1/tcp/57708/ws/p2p/12D3KooWRqAUEzPwKMoGstpfJVqr3aoinwKVPu4DLo9nQncbnuLk/p2p-circuit/p2p/12D3KooW9wFiWFELqGJTbzEwtByXsPiHJdHB8n7Kin71VMYyERmC/p2p-circuit/webrtc/p2p/12D3KooW9wFiWFELqGJTbzEwtByXsPiHJdHB8n7Kin71VMYyERmC'
Listening on /ip4/127.0.0.1/tcp/57708/ws/p2p/12D3KooWRqAUEzPwKMoGstpfJVqr3aoinwKVPu4DLo9nQncbnuLk/p2p-circuit/p2p/12D3KooWBZyVLJfQkofqLK4op9TPkHuUumCZt1ybQrPvNm7TVQV9/p2p-circuit/webrtc/p2p/12D3KooWBZyVLJfQkofqLK4op9TPkHuUumCZt1ybQrPvNm7TVQV9
Received message 'helloa'
Sending message 'hellob'
Received message 'hellob'

Next steps

The WebRTC transport is not limited to browsers.

Why don't you try to create a Node.js version of the browser peer script?

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

About

Connect a browser to another browser

Resources

License

Unknown and 2 other licenses found

Licenses found

Unknown
LICENSE
Unknown
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published