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-core

v0.2.2

Published

Core identity, heartbeat, Socket.io, config, and signal buffer for Trillboards Edge AI SDK

Readme

@trillboards/edge-core

Core runtime for Trillboards Edge AI SDK. Device identity, Socket.io connectivity, configuration, signal buffering, health monitoring, and auto-recovery for DOOH/CTV devices.

Install

npm install @trillboards/edge-core

What This Does

Provides the foundational infrastructure that all other @trillboards/edge-* packages depend on:

  • Device Identity — generates stable device fingerprints and session IDs from hardware characteristics
  • Socket.io Manager — real-time connection to Trillboards API with auto-reconnection and telemetry emission
  • Signal Buffer — SQLite-backed offline queue that caches audience metrics when connectivity drops
  • Health Registry — tracks 6 subsystems (socket, player, camera, microphone, ML pipeline, memory)
  • Recovery Ladder — 6-level auto-recovery from reconnect through service restart to rollback
  • Capability Tiers — classifies devices into TIER_1 through TIER_4 based on RAM and NPU availability
  • Sensing Config — deserializes 70+ sensing parameters for audience measurement tuning

Usage

import {
  DeviceIdentity,
  SocketManager,
  SignalBuffer,
  SubsystemHealthRegistry,
  SensingConfig,
  computeTier,
  classifyObservationSignal
} from '@trillboards/edge-core';

// Device identity
const identity = new DeviceIdentity();
const fingerprint = await identity.getFingerprint();

// Capability detection
const tier = computeTier({ ramMB: 4096, hasNPU: false });
// → TIER_2

// Socket.io connectivity
const socket = new SocketManager({
  url: 'https://api.trillboards.com',
  deviceToken: 'your-token'
});
await socket.connect();

// Offline-resilient signal buffering
const buffer = new SignalBuffer({ dataDir: './data' });
await buffer.push({ type: 'audience_metrics', payload: { faceCount: 3 } });

// Signal classification
const signal = classifyObservationSignal(rawPayload);
// → { family: 'SCREEN_AUDIENCE', evidenceGrade: 'FACE_BACKED', ... }

Subsystem Health Monitoring

const health = new SubsystemHealthRegistry();

health.update('camera', 'healthy');
health.update('ml_pipeline', 'degraded');

const report = health.getReport();
// → { camera: 'healthy', ml_pipeline: 'degraded', ... }

Capability Matrix

import { getCapabilityMatrix } from '@trillboards/edge-core';

const matrix = getCapabilityMatrix(tier);
// → { models: ['blazeface'], inferenceHz: 2, resolution: 320, ... }

Key Types

  • PlatformAdapter — interface for platform-specific adapters (Linux, Windows)
  • CameraProvider — interface for camera capture implementations
  • AudioProvider — interface for audio capture implementations
  • AudienceMetricsPayload — structured audience measurement data
  • VASResult — Viewability Attention Score output
  • DetectedFace — face detection result with bounding box, age, gender, emotion
  • EdgeQualityReport — inference quality telemetry

License

MIT