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

@observertc/observer-js

Package Overview
Dependencies
Maintainers
2
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@observertc/observer-js

Server Side NodeJS Library for processing ObserveRTC Samples

  • 0.9.23-beta
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
314
increased by34.19%
Maintainers
2
Weekly downloads
 
Created
Source

Server side component for monitoring WebRTC stack

Table of Contents:

  • Quick Start
  • Configurations
  • NPM package
  • API docs
  • Schemas
  • Getting Involved
  • License

Qucik Start

Install it from npm package repository.

npm i @observertc/observer-js

Use it in your server side NodeJS app.

import { createObserver, ClientSample } from "@observertc/observer-js";

const observer = createObserver({
    // see full config in Configuration section
});

const clientSource = observer.createClientSource({
    roomId: 'roomId',
    callId: 'room-session-id',
    clientId: 'reporting-client-id',
});

const clientSample: ClientSample; // Receive your samples, for example, from a WebSocket

clientSource.accept(clientSample);

observer.addEvaluator(async context => {
    const { endedCalls } = context;

    // Observe call durations
    for (const endedCall of endedCalls) {
        const elapsedTimeInMins = (endedCall.ended -  Number(endedCall.started)) / (60 * 1000);
        console.log(`Call ${endedCall.callId} duration was ${elapsedTimeInMins} minutes`);
    }
});

The above example do as follows:

  1. create an observer to evaluate samples from clients and sfus
  2. create a client source object to accept client samples
  3. add an evaluator process to evaluate ended calls

API documentation

https://observertc.org/docs/api/observer-js

NPM package

https://www.npmjs.com/package/@observertc/observer-js

Schemas

https://github.com/observertc/schemas

Getting Involved

The repository is open for contributions.

License

Apache-2.0

Keywords

FAQs

Package last updated on 31 Dec 2023

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