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

pa_encoder

v0.3.2

Published

HTML canvas frame encoder made for personal use.

Downloads

362

Readme

HTML canvas frame encoder made for personal use.

Installation

npm install pa_encoder

Provides:

  • JavaScript API (ES module)
  • CLI tool (pa_encoder)

Usage

CLI (recommended)

Starts a local proxy server and opens a browser UI.

pa_encoder --url http://localhost:5173 --entry /src/main.js

Options

  • --url Target site URL
  • --entry Entry script imported in preview iframe
  • --port UI server port (default: 8787)

The UI shows a live preview, capture controls, and progress logs.

Live mode UI tips:

  • Duration=0 means manual stop
  • PendingCap limits concurrent canvas snapshot tasks
  • Stats(ms) controls status update interval to keep UI lightweight

JavaScript API

Live capture (real-time)

import { startLiveCapture, createZipExporter } from "pa_encoder";

const canvas = document.querySelector("canvas");
const exporter = await createZipExporter({ zipName: "frames.zip" });

const session = await startLiveCapture({
  canvas,
  exporter,
  fps: 30,
  maxPendingCaptures: 2,
});

await session.stop();

startLiveCapture() returns { stop, stats, done }:

  • stop() finalizes capture/export
  • stats is the live mutable stats object
  • done resolves when capture fully stops/finalizes

Deterministic frame capture (virtual time)

import { virtualTimeCaptureFromStart, createZipExporter } from "pa_encoder";

const exporter = await createZipExporter({ zipName: "frames.zip" });

await virtualTimeCaptureFromStart({
  fps: 60,
  frameCount: 300,
  start: async () => {
    await import("/src/main.js");
  },
  onFrame: async (canvas, i) => {
    const blob = await new Promise((r) => canvas.toBlob(r, "image/png"));
    await exporter.write(i, blob);
  },
});

await exporter.finalize();

Hooks requestAnimationFrame, time APIs, and timers to ensure deterministic output.


Exporters

All exporters share the same interface:

{
  write(frameIndex, blob);
  finalize();
}

ZIP exporter

import { createZipExporter } from "pa_encoder";
await createZipExporter({ zipName: "frames.zip" });

Downloads a ZIP of PNG frames.


File System exporter (Chromium)

import { createFsExporter } from "pa_encoder";
await createFsExporter({ dirNameHint: "frames" });

Writes directly to a directory (secure context required).


Best exporter

import { createBestExporter } from "pa_encoder";
await createBestExporter({ prefer: "fs" });

Uses File System export when available, otherwise ZIP.


Supported Environments

  • Modern Chromium-based browsers recommended
  • Requires:
    • ES module Web Workers
    • OffscreenCanvas
    • createImageBitmap
  • ZIP export works in most modern browsers
  • File System export requires Chromium + secure context