-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Open
Labels
Description
Hi Peerjs team!
To test a client browser's compatibility, I'm writing a Python peerjs client. Consider this flow:
-
Client browser creates a new peer:
peer = new Peer('', {options});
-
Client posts peer info to web server:
xhr('/some-url', {peer-info})
-
Server uses Python peerjs client to create a p2p connection and send the Client browser a message.
I know peerjs is meant for browser p2p RTC but me thinks a python client (just the brokering) might be helpful for testing a client's capabilities? I don't need help on the actual webRTC protocol just communicating with the peerjs server to connect to the browser. If someone could point me to the right direction? Thanks!