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

@theoplayer/react-native-analytics-npaw

v1.1.0

Published

NPAW analytics connector for @theoplayer/react-native

Readme

THEOplayer React Native NPAW Connector

An NPAW (formerly YOUBORA) analytics connector for @theoplayer/react-native.

This connector is JavaScript-only and works across iOS, Android and web through the unified react-native-theoplayer player, using only the npaw-plugin-react-native plugin — no native iOS/Android modules are required.

Note: This connector targets NPAW v7+ (it depends on npaw-plugin-react-native ^7.3.x).

Installation

npm install @theoplayer/react-native-analytics-npaw

Usage

Configuring the connector

Create the connector with the useNpaw hook, passing a config object and initializing it once the THEOplayer instance is ready:

import { LogLevel, useNpaw } from '@theoplayer/react-native-analytics-npaw';

const App = () => {
  const [npaw, initNpaw] = useNpaw({
    accountCode: 'your-account-code',
    analytics: {
      'content.title': 'Big Buck Bunny',
      'content.isLive': false,
      // Free-form custom metadata shown in the NPAW "Metadata" panel:
      'content.metadata': { genre: 'animation' },
    },
    // Optional NpawPlugin options (host, sessionRecovery, ...):
    plugin: { sessionRecovery: 'auto' },
    logLevel: LogLevel.DEBUG,
  });

  const onPlayerReady = (player: THEOplayer) => {
    initNpaw(player);
  };

  return <THEOplayerView config={playerConfig} onPlayerReady={onPlayerReady} />;
};

Alternatively, construct the NpawConnector class directly:

import { NpawConnector } from '@theoplayer/react-native-analytics-npaw';

const connector = new NpawConnector(player, { accountCode: 'your-account-code' });

Configuration

| Field | Description | |---------------|------------------------------------------------------------------------------------| | accountCode | Your NPAW account code. Required. | | analytics | Per-video analytics options, e.g. content.title, content.isLive, content.metadata, user.name, ... | | plugin | NpawPlugin options such as host, sessionRecovery and balancerAnalyticsEnabled. | | logLevel | Initial LogLevel. |

What is tracked automatically

Once initialized, the connector registers a video adapter (and an ads adapter) against the player and reports playback automatically:

  • Playback events (start, join, pause/resume, buffering, seeking, end and errors) mapped from the unified PlayerEventType events.
  • Playhead, duration and live/VOD state, resource, rendition and bitrate.
  • The active subtitle/caption track language (getSubtitles) and audio language (getVideoLanguage).
  • Ads: ad breaks, ad start/join/stop, quartiles, skip, click and errors, with ad position (pre/mid/post), duration and skippability.

Updating options at runtime

// Update options for the current video (e.g. late-arriving metadata):
npaw.current?.setVideoOptions({ 'content.title': 'New Title' });

// Update global analytics options:
npaw.current?.setAnalyticsOptions({ 'user.name': 'viewer-1' });

// Change the log level:
npaw.current?.setLogLevel(LogLevel.SILENT);

// Stop analytics and close all sessions:
npaw.current?.destroy();

See the NPAW integration documentation for the full set of plugin and analytics options.