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.9

Published

HTML canvas frame encoder made for personal use.

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

Frame mode UI tips:

  • Best/FS writes PNG frames directly to a chosen directory from the UI
  • Start chooses the first timeline frame to export; Frames controls how many frames to export
  • Workers controls parallel PNG encoding after each frame snapshot is captured
  • PendingBmp limits how many ImageBitmap snapshots can be held in memory
  • Wait=auto uses a sketch render hook, exposed WebGPU queue, or tracked GPU context when available
  • WebGPU canvases opened inside the preview are configured with COPY_SRC; during frame capture, submitted textures are copied to a readback buffer before the browser presents the canvas
  • WebGL contexts opened inside the preview are captured with preserveDrawingBuffer: true
  • WebGL frame snapshots are read from the framebuffer with gl.readPixels() in frame mode
  • Fully transparent snapshots are treated as not-ready captures and retried before export

For WebGPU sketches, expose either:

window.__pa_encoder_gpuDevice = device;
// or
window.__pa_encoder_waitForFrame = async () => {
  await device.queue.onSubmittedWorkDone();
};

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,
  waitForFrameReady,
  createFramePngPipeline,
  createFsExporter,
} from "pa_encoder";

const exporter = await createFsExporter({ dirNameHint: "frames" });
const pipeline = await createFramePngPipeline({
  exporter,
  encodeWorkers: 3,
  maxPendingBitmaps: 4,
  maxEncodeQueue: 8,
});

await virtualTimeCaptureFromStart({
  fps: 60,
  frameCount: 300,
  start: async () => {
    await import("/src/main.js");
  },
  onFrame: async (canvas, i) => {
    await waitForFrameReady({ canvas, frameIndex: i, mode: "auto" });
    await pipeline.capture(canvas, i);
  },
});

await pipeline.drain();
await exporter.finalize();

Hooks requestAnimationFrame, time APIs, and timers to ensure deterministic output. Frame snapshots are captured sequentially for correctness, then PNG encoding and writes are pipelined.


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