npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@wawjs/ngx-rtc

v22.0.1

Published

Angular WebRTC helper package from Web Art Work.

Downloads

257

Readme

@wawjs/ngx-rtc

Angular WebRTC helper package from Web Art Work.

ngx-rtc extracts the WebRTC peer and local media helpers from the older all-in-one package into a focused Angular package.

License

MIT

Installation

npm i --save @wawjs/ngx-rtc

Usage

import { provideNgxRtc } from '@wawjs/ngx-rtc';

export const appConfig = {
	providers: [provideNgxRtc()],
};

Available Features

| Name | Description | | --- | --- | | RtcService | WebRTC helper for local media, peers, offers, answers, and ICE candidates | | provideNgxRtc | Environment provider for package setup | | Config | Public configuration type |

Rtc Service

RtcService wraps local media stream creation and peer connection lifecycle.

Methods

  • initLocalStream(): Promise<MediaStream>
  • createPeer(id: string): Promise<RTCPeerConnection>
  • getPeer(id: string): RTCPeerConnection | undefined
  • createOffer(id: string): Promise<RTCSessionDescriptionInit>
  • createAnswer(id: string, offer: RTCSessionDescriptionInit): Promise<RTCSessionDescriptionInit>
  • setRemoteAnswer(id: string, answer: RTCSessionDescriptionInit): Promise<void>
  • addIceCandidate(id: string, candidate: RTCIceCandidateInit): void
  • getLocalStream(): MediaStream | null
  • closePeer(id: string): void
  • closeAll(): void

Example:

import { RtcService } from '@wawjs/ngx-rtc';

constructor(private rtcService: RtcService) {}

async connect(id: string) {
	await this.rtcService.initLocalStream();
	await this.rtcService.createPeer(id);
	const offer = await this.rtcService.createOffer(id);
	console.log(offer);
}

SSR Safety

RtcService guards browser-only APIs. Methods that require a browser runtime throw during SSR instead of touching WebRTC globals directly.

AI Coding Agents

This package includes AI.md with copyable instructions for Codex, Claude Code, Cursor, and other coding agents.

Copy this into the consuming project's AGENTS.md, CLAUDE.md, or equivalent file:

- This Angular project uses `@wawjs/ngx-rtc` for WebRTC peer and local media helpers.
- Import public APIs from `@wawjs/ngx-rtc`.
- Prefer bootstrapping with `provideNgxRtc()` in application providers.
- Prefer `RtcService` for local stream initialization, peer management, offers, answers, and ICE candidate handling before adding direct WebRTC utilities.
- Keep SSR-safe behavior intact. Do not add unguarded access to `navigator.mediaDevices`, `RTCPeerConnection`, or related browser-only globals outside the service.