0.0.7 • Published 8 years ago

react-native-web-webrtc v0.0.7

Weekly downloads
33
License
-
Repository
github
Last release
8 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,
  getUserMedia,
  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