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

@trillboards/edge-ads

v0.2.1

Published

Browser lifecycle, display management, and ad delivery for Trillboards Edge AI SDK

Readme

@trillboards/edge-ads

Ad delivery and display management for DOOH/CTV screens. Chromium browser lifecycle, multi-display detection, and content state tracking for digital signage ad serving.

Install

npm install @trillboards/edge-ads

What This Does

Manages the ad playback layer on digital signage hardware:

  • Browser Manager — launches and controls a Chromium instance for ad rendering (VAST/VPAID), handles crashes, auto-restarts, and navigation
  • Display Manager — detects connected displays (HDMI, DisplayPort, virtual), reports resolution, DPI, and refresh rate
  • Content State Tracker — polls the browser for current ad ID, content type, stream ID, and impression ID for proof-of-play attestation

Usage

import { BrowserManager, DisplayManager, ContentStateTracker } from '@trillboards/edge-ads';

// Detect connected displays
const displays = new DisplayManager();
displays.on('displayConnected', (info) => {
  console.log(`${info.name}: ${info.width}x${info.height} @ ${info.refreshRate}Hz`);
});
const screens = await displays.enumerate();

// Launch Chromium for ad rendering
const browser = new BrowserManager({
  url: 'https://screen.trillboards.com',
  chromiumPath: '/usr/bin/chromium-browser',
  windowSize: { width: 1920, height: 1080 },
  headless: false
});

browser.on('started', () => console.log('Browser ready'));
browser.on('crashed', () => console.log('Browser crashed — auto-restarting'));

await browser.start();

// Track current ad state
const tracker = new ContentStateTracker(browser);
const state = await tracker.poll();
// → { adId: 'ad_123', contentType: 'video', impressionId: 'imp_456' }

Display Info

interface DisplayInfo {
  id: string;
  name: string;
  width: number;
  height: number;
  dpi: number;
  refreshRate: number;
  isPrimary: boolean;
}

Browser Events

| Event | When | |-------|------| | started | Chromium launched and navigated | | stopped | Browser closed gracefully | | crashed | Browser process died (auto-restart triggered) | | reloaded | Page reloaded | | navigationError | URL failed to load |

License

MIT