New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

webrtc-myip

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webrtc-myip

WebRTC client

  • 2.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

WebRTC-myip - webRTC client

A library for WebRTC media streaming

Presenter's flowViewer's flow
1. Create webRTC client instance
const rtc = new RTC(WS_SERVER_URL, RTC_CONFIG);
2. Set media source2. Set media destination
rtc.setSourceVideo('userMedia', userMedia);rtc.connectDestinationVideo('userMedia', userMedia);
3. Join a room as a streamer3. Join a room as a viewer
rtc.join(room, true);rtc.join(room, false);

Install

npm install webrtc-myip

Sample usage

import { RTC_CONFIG, WS_SERVER_URL } from "./config";
import RTC, { STREAM_EVENTS } from "webrtc-myip";

const webcamEl = <HTMLVideoElement>document.getElementById('webcam');
const screenEl = <HTMLVideoElement>document.getElementById('screen');
const queryString = require('query-string');
const { room, isStreamer } = queryString.parse(location.search);

const rtc = new RTC(WS_SERVER_URL, RTC_CONFIG);

console.log(room, isStreamer);

async function streamerFlow(room: string) {
    webcamEl.srcObject = await rtc.setupMedia('userMedia');
    const connection = await rtc.join(room, isStreamer);
}

async function viewerFlow(room: string) {
    const connection = await rtc.join(room, isStreamer);
    connection.on(STREAM_EVENTS.REMOTE_USER_MEDIA, (stream: MediaStream) => {
        webcamEl.srcObject = stream;
    });
    connection.on(STREAM_EVENTS.REMOTE_DISPLAY, (stream: MediaStream) => {
        screenEl.srcObject = stream;
    });
}

if (isStreamer) {
    streamerFlow(room).catch(console.error);
} else {
    viewerFlow(room).catch(console.error);
}

See working example code in the example folder

Docs

Read full documentation here

Socket interface

To exchange peer negotiation messages (offer & answer) WebRTC-myip uses web socket. Pass WS URL in RTC instance constructor to connect to your socket.

new RTC(WS_SERVER_URL, RTC_CONFIG)

Your socket has to implement following types of events:

  • 'me' - passes just connected user id to the connected user
  • 'other' - passes connected user id to Presenter
  • 'message' - translate user's message to other participants

See sample socket code in the example folder

Keywords

FAQs

Package last updated on 19 Apr 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc