0.1.2 • Published 6 years ago

@dpwolfe/react-native-web-webrtc v0.1.2

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

react-native-web-webrtc

A WebRTC module for React Native Web.

Build Status

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