Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ngx-webrtc-lib

Package Overview
Dependencies
Maintainers
0
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngx-webrtc-lib

Angular microapp/library for video conference using agora-rtc-sdk-ng.

  • 18.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
28
decreased by-81.21%
Maintainers
0
Weekly downloads
 
Created
Source

ngx-webrtc-lib

https://nodei.co/npm/ngx-webrtc-lib.png?downloads=true&downloadRank=true&stars=true

npm version npm downloads Build Status codecov

Angular microapp/library for Agora WebRTC client from Agora.io using agora-rtc-sdk-ng.

This library was generated with Angular CLI version 12.2.0.

Prerequisites

To get started with Agora, follow this guide to retrieve the AppID.

Installation

Install ngx-webrtc-lib from npm:

npm install ngx-webrtc-lib --save

Standalone Component support

To use the library in standalone mode, follow these steps:

Provide WebRtc configuration in app.configs.ts file

import { provideWebRtc } from 'ngx-webrtc-lib';

export const appConfig: ApplicationConfig = {
  providers: [
    provideWebRtc({
      AppID: 'Agora AppID',
    }),
    // Other providers
  ],
};

Import WebRtcComponent into the host component's imports:

import { WebRtcComponent } from 'ngx-webrtc-lib';

@Component({
  standalone: true,
  imports: [
    WebRtcComponent,
  ],
  ...
})
export class HostComponent {
  // Host component logic
}

NgModule support

To use the library with NgModules, import WebRtcModule into your module's imports:

import { WebRtcModule } from 'ngx-webrtc-lib';

@NgModule({
  ...
  imports: [
    WebRtcModule.forRoot({
      AppID: 'Agora AppID',
    }),
  ]
  ...
})

Basic usage

Add WebRtcComponent to your component template:

<ngx-webrtc
  [channel]="channel"
  [displaySmallScreen]="true"
  [debug]="true"
  [uid]="uid"
  [token]="token"
  (callEnd)="onCallEnd()"
></ngx-webrtc>

Advanced usage

The library allows you to display a video call confirmation dialog. To use the dialog service:

  1. Inject VideoCallDialogService into your component or service.
  2. Call the open method with the required data.

This returns VideoCallDialog object with an API that allows you to:

  • Programmatically close the dialog
  • Accept the call, which will open WebRtcComponent
  • Subscribe to the dialog state
import { VideoCallDialogService, VideoCallDialogData } from 'ngx-webrtc-lib';

constructor(private dialogService: VideoCallDialogService) { }

onDialogOpen(): void {
  const dialog = this.dialogService.open({
    uid: this.uid,
    token: this.token,
    channel: this.channelId,
    outcome: this.outcome,
    user: this.user,
  });

  setTimeout(() => dialog.close(), 7000);
  dialog.afterConfirmation().subscribe((data: VideoCallDialogData) => console.log(data));
}

Import assets in your angular.json file

"assets": [
  {
    "glob": "**/*",
    "input": "./node_modules/ngx-webrtc-lib/src/assets/",
    "output": "./assets/"
  }
],

For real-life video call confirmation behavior with multiple clients, where one client declines the call, and the result immediately reflects on the other clients, you need to implement your own custom solution. This is an example of the implementation using web-sockets.

How to build lib for development

git clone https://github.com/TarasMoskovych/ngx-webrtc.git
cd ngx-webrtc
npm ci
npm start

Compatibility

To use this library, please follow the versioning specified in the following table.

ngx-webrtc-libAngularNodeJS
1.x^12.2.0^12.14.0 || ^14.15.0
2.x^12.2.0^12.14.0 || ^14.15.0
3.x^12.2.0^12.14.0 || ^14.15.0
13.x~13.4.0^12.20.0 || ^14.15.0 || ^16.10.0
14.x^14.3.0^14.15.0 || ^16.10.0
15.x^15.2.10^14.20.0 || ^16.13.0 || ^18.10.0
16.x^16.2.10^16.14.0 || ^18.10.0
17.x^17.1.2^18.13.0 || ^20.9.0
18.x^18.2.10^18.19.1 || ^20.11.1 || ^22.0.0

API reference

WebRtcComponent

NameDescription
@Input() uid: stringUser identifier.
@Input() token: stringAgora token for Secure Authentication. Default value null
@Input() channel: stringChannel identifier.
@Input() debug: booleanEnable debugging. Default value false
@Input() displaySmallScreen: booleanDisplay small screen toggle. Default value false
@Output() callEnd: EventEmitterEvent that is emitted when the call is ended.

VideoCallDialogService

NameDescription
open: (VideoCallDialogData) => VideoCallDialogRenders VideoCallComponent in the dialog.

VideoCallDialogData

NameDescription
uid: stringUser identifier.
channel: stringChannel identifier.
token: stringAgora token for Secure Authentication. Default value null
outcome: booleanDefines the UI for incoming or outgoing call modes.
user: UserUser name and photo URL.

VideoCallDialog

NameDescription
acceptCall: () => voidCloses the confirmation dialog and opens WebRtcComponent with passed data before.
close: () => voidCloses the dialog with video-call confirmation component.
afterConfirmation: () => Observable<VideoCallDialogData | null>;Returns Observable with the data depends on accepting or declining the call.
afterCallEnd: () => Observable;Returns Observable with the value when the call is ended.

Keywords

FAQs

Package last updated on 07 Nov 2024

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