data-channels is a Pion WebRTC application that shows how you can send/recv DataChannel messages from a web browser
export GO111MODULE=on
go get github.com/pion/webrtc/v3/examples/data-channels
In the jsfiddle the top textarea is your browser's session description, copy that and:
Run echo $BROWSER_SDP | data-channels
- Paste the SessionDescription into a file.
- Run
data-channels < my_file
Copy the text that data-channels
just emitted and copy into second text area
Under Start Session you should see 'Checking' as it starts connecting. If everything worked you should see New DataChannel foo 1
Now you can put whatever you want in the Message
textarea, and when you hit Send Message
it should appear in your terminal!
Pion WebRTC will send random messages every 5 seconds that will appear in your browser.
Congrats, you have used Pion WebRTC! Now start building something cool