@dpwolfe/react-native-web-webrtc
v0.1.2
Published
A sister project to react-native-web and react-native-webrtc that allows webrtc to be used with react-native-web projects.
Downloads
8
Maintainers
Readme
react-native-web-webrtc
A WebRTC module for React Native Web.
Support
- Supports browsers and chromeOS.
- Support video and audio communication.
- Supports data channels.
- You can use it to build a client side application using react-native-web that can use WebRTC.
Installation
react-native-web-webrtc:
Usage
Now, you can use WebRTC using react-native in a browser or chromeOS.
In your index.web.js
/index.chromeos.js
file:
var WebRTC = require('react-native-web-webrtc');
var {
RTCPeerConnection,
RTCMediaStream,
RTCIceCandidate,
RTCSessionDescription,
MediaStreamTrack,
RTCView
} = WebRTC;
TODO:
- Example project
- Documentation of implementation
- Clean up RTCView: unnecessary code.
Sister Projects:
This is a sister project to: react-native-webrtc and react-native-web