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

htmlrec

v0.2.0

Published

Render HTML animations to video — frame-perfect, headless and deterministic.

Readme

We're dsplce.co, check out our work on our website: dsplce.co 🖤

htmlrec

Rust crates.io Size crates.io Size Licence crates.io

⚡ Render HTML/CSS animations to video — frame-perfect, headless and deterministic.

htmlrec (hrec) is a command-line tool that captures HTML/CSS/JS animations into video files by driving a virtual clock through a headless Chromium instance, frame by frame.

htmlrec demo

🖤 Features

  • hrec render anim.html Got a lovely animation stuck in a browser tab — one Claude one-shotted, or one you hand-rolled — and want it as an actual file? Here's your video, no screen recorder in sight
  • hrec render anim.html -o out.webm --transparent Need it to drop cleanly over other footage? Export WebM or ProRes with a real alpha channel — the one thing a screen recording can never give you
  • Frame-perfect and deterministic — less a camcorder pointed at a monitor, more how a render farm makes a film: a virtual clock walks the page forward a frame at a time, so the same input gives the same bytes out, on your laptop or a throttled CI box alike
  • hrec render anim.html --zoom 2.0 --zoom-element ".logo" Just want to frame one detail? Scale any element before the capture

Table of Contents

📦 Installation

cargo

Install from crates.io using cargo:

cargo install htmlrec

Alternatively you can find pre-built binaries for your platform on GitHub.

After installation, the hrec command will be available in your terminal.

hrec also needs ffmpeg on your PATH to encode the video — grab it from your package manager if you haven't already.

Homebrew

Install from our tap:

brew install dsplce-co/tap/htmlrec ffmpeg

This makes the hrec command available in your terminal.

npm

Install globally from npm — the right prebuilt binary for your platform is fetched automatically:

npm install -g htmlrec

This installs the hrec command. Supported platforms: Linux x64, macOS x64, macOS arm64

.deb file

You can find the latest .deb file on GitHub Releases.

💪 Agent skill

Working with a coding agent (Claude Code, Cursor, and friends)? We ship an agent skill so it can drive hrec for you — hand it the animation, get the video back. Add it with the skills CLI:

npx skills add dsplce-co/htmlrec

🧪 Usage

Render an animation to video

You've got an animation built in plain HTML/CSS/JS — a loader, a logo reveal, some little canvas thing — and you want it as an actual video file. The obvious move is to screen-record it, which works right up until you look closely: a frame drops here, it runs a touch fast there, and re-running it never hands you the same file twice. So point hrec at the HTML and let it capture the thing properly instead:

hrec render animation.html

By default this writes output.webm at 1280×720, 60 fps, for 5 seconds. Want a standard, plays-anywhere MP4? Just name it:

hrec render animation.html -o out.mp4

Under the hood every time-based browser API — performance.now, Date.now, requestAnimationFrame, setTimeout, setInterval, and CSS animations — is overridden by a virtual clock that hrec steps forward one frame at a time. The page believes a steady ~16ms passed between frames even whilst your machine took two seconds to draw one, so every frame lands at exactly the right moment, no matter how fast or slow the box.

Render with transparency

Sometimes you want the animation to sit over something else — a video, a slide, a background — with everything around it cut out. Render to WebM (VP9) or MOV (ProRes 4444) and pass --transparent to keep the alpha channel:

hrec render animation.html -o out.webm --transparent
hrec render animation.html -o out.mov --transparent

--transparent drops the browser background and captures raw RGBA per frame. It needs a .webm or .mov output — ask for it with .mp4 and hrec will stop you, since MP4 simply can't carry alpha.

Custom resolution and duration

hrec render animation.html -o out.mp4 --width 1920 --height 1080 --duration 10 --fps 60

| Flag | Default | Description | |---|---|---| | -o, --output | output.webm | Output file — the extension picks the format (see below) | | -d, --duration | 5.0 | Duration in seconds | | -f, --fps | 60 | Frames per second | | --width | 1280 | Viewport width in pixels | | --height | 720 | Viewport height in pixels | | -t, --transparent | off | Keep the alpha channel — needs .webm or .mov | | --zoom | — | CSS zoom factor applied before capture (e.g. 2.0, 0.5) | | --zoom-element | :root | CSS selector the --zoom applies to |

Zoom into an element

Scale any element before capture using CSS zoom — handy for framing a detail or bumping up something small:

# Zoom the whole page to 2× (default target is :root)
hrec render animation.html -o out.mp4 --zoom 2.0

# Zoom one specific element
hrec render animation.html -o out.mp4 --zoom 0.5 --zoom-element ".card"

Supported output formats

| Extension | Codec | Alpha | |---|---|---| | .mp4 | H.264 / yuv420p | No | | .webm | VP9 / yuva420p | Yes | | .mov | ProRes 4444 / yuva444p10le | Yes |

Example HTML file:

animation.html:

<!DOCTYPE html>
<html>
<head>
  <style>
    body { margin: 0; background: #000; }
    .box {
      width: 100px; height: 100px;
      background: #fff;
      animation: slide 2s linear infinite;
    }
    @keyframes slide {
      from { transform: translateX(0); }
      to   { transform: translateX(500px); }
    }
  </style>
</head>
<body>
  <div class="box"></div>
</body>
</html>
hrec render animation.html -o out.mp4 --duration 2

🛠️ Requirements

  • Chromium or Chrome: hrec uses any Chrome/Chromium already on your system, and otherwise downloads a headless Chromium on first run, caching it for next time. On Linux the downloaded browser may still want a few common system libraries a desktop browser usually brings along — if any are missing, hrec passes through the browser's own error naming them
  • ffmpeg: required, on your PATH — it encodes the captured frames into the final video

📁 Repo & Contributions

🛠️ Repo: https://github.com/dsplce-co/htmlrec 📦 Crate: https://crates.io/crates/htmlrec

PRs welcome, feel free to contribute

📄 Licence

MIT or Apache-2.0, at your option.