-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Add WebRTC private to public example #208
base: main
Are you sure you want to change the base?
Conversation
@Nkovaturient that looks great to me. Btw. Maybe you know how to make a browser-to-browser webrtc-direct example without a relay node by simple creating an SDP (e.g. via STUN) of browser A and then transferring the SDP file or scan a SDP QR code to browser B which then can simply connect to browser A without circuit-relay! There's an example on how to do that (without libp2p) in the webrtc.org examples, it would be amazing to have this working for libp2p and ipfs too! Like that, people could create ad-hoc libp2p networks on the streets or nature when no wifi or internet is available, e.g. via bluetooth without the need of a public relay. This might be also of help in countries which might ip-block all public libp2p relays and still exchange / replicate their data when meeting in person or via any social media. |
hey @silkroadnomad , since we have a webrtc-pvt-to-pvt example that utilises a circuit-relay reservation for peer/IP discovery as of now, we can start to endeavor by changing it to WebRTC-Direct SDP Exchange via QR Code where
that will be cool, indeed! |
also, using a STUN server is a centralized method for public IP discovery?
|
That's all true. But in case of a Bluetooth network (and no other network in the jungle) between two phones, SDP without circuit-relay-v2 would be a great substitute. (In case e.g. the bluetooth api in Chrome can do what I am proposing) |
well, agree ! https://blog.libp2p.io/libp2p-webrtc-browser-to-server/ |
feat: Implement WebRTC Private-to-Public Peer Communication
Description
This PR introduces a WebRTC private-to-public implementation where a Node.js peer acts as a listener, and a browser peer dials it using WebRTC-Direct. This eliminates the need for a circuit relay.
Changes:
Public Peer (Node.js):
Private Peer (Browser):
Notes & Open Questions
Checklist