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

@rune-ascii/animations

v0.2.0

Published

Animation data for rune-ascii, served via CDN

Readme

@rune-ascii/animations

Pre-generated ASCII art animation data for rune-ascii. This package exists so that jsDelivr CDN mirrors it automatically, allowing the <Rune> component to fetch individual animations on demand without bundling them all.

You don't need to install this package directly. The rune-ascii React component fetches animations from this package via CDN automatically.

How it works

When you render a component like:

import { Rune } from "rune-ascii";

<Rune name="ghost" />;

The rune-ascii component constructs a CDN URL like:

https://cdn.jsdelivr.net/npm/@rune-ascii/[email protected]/ghost.rune.json

...and fetches just that one animation. The browser caches it. You only download the animations you actually use.

Available animations

| Animation | Description | | --------------- | -------------------- | | fire | Flickering fire | | flame | Single flame | | ghost | Floating ghost | | earth1 | Spinning globe | | earth2 | Spinning globe (alt) | | saturn | Saturn with rings | | coin | Spinning coin | | orangutan | Orangutan | | gorilla | Gorilla | | shoes | Shoes | | tuxLaptop | Tux on a laptop | | rocket | Rocket launch | | flowerSpinner | Spinning flower | | loaderGood | Loading spinner | | successCheck1 | Success checkmark | | error | Error indicator | | warning | Warning indicator | | sleepEmoji | Sleep emoji | | angryEmoji | Angry emoji | | geekedEmoji | Geeked emoji | | aitBot | AI robot |

Each animation is available in two sizes: "m" (90 columns, default) and "s" (50 columns).

Creating your own animations

Use the companion CLI to generate custom .rune.json files from any video:

npx @rune-ascii/cli generate ./video.mp4 --name "my-animation"

See @rune-ascii/cli for full documentation.

Related packages

  • rune-ascii — React component for playing ASCII animations
  • @rune-ascii/cli — CLI for generating .rune.json animations from video files

License

MIT