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

terminal-screensavers

v0.2.5

Published

Beautiful terminal screensavers — run with npx terminal-screensavers

Readme

terminal-screensavers

Beautiful terminal screensavers. No install required — just run:

npx terminal-screensavers

Or with Bun:

bunx terminal-screensavers

Press any key to exit.

Screensavers

| Name | Description | FPS | |---|---|---| | aquarium | Fish, bubbles, and seaweed in an ASCII aquarium | 6 | | bonsai | Procedurally growing bonsai tree | 6 | | bouncing-logo | DVD-style bouncing text block with color changes | 15 | | digital-clock | Large bouncing digital clock display | 10 | | dna-helix | Rotating DNA double helix animation | 12 | | fire | ASCII fire rising from the bottom of the screen | 15 | | fireworks | Colorful firework rockets and explosions | 15 | | game-of-life | Conway's Game of Life cellular automaton | 8 | | lava-lamp | Colorful metaball lava lamp blobs | 10 | | matrix-rain | Falling green katakana and latin characters | 12 | | maze | Animated maze generation and solving | 15 | | mystify | Bouncing geometric shapes like the Windows classic | 15 | | pipes | Random pipe segments with box-drawing characters | 15 | | starfield | 3D stars flying toward the viewer | 20 |

Usage

# Random screensaver
terminal-screensavers

# Specific screensaver
terminal-screensavers matrix-rain

# List all screensavers
terminal-screensavers --list

# Override FPS
terminal-screensavers starfield --fps 30

Adding a Screensaver

  1. Create src/screensavers/<name>.tsx exporting a ScreensaverModule:
import type { ScreensaverModule, ScreensaverProps } from "../types.js";

function MyScreensaver({ columns, rows, frame, elapsed }: ScreensaverProps) {
  // render your screensaver
}

export const myScreensaver: ScreensaverModule = {
  name: "my-screensaver",
  description: "A short description",
  component: MyScreensaver,
  fps: 15,
};
  1. Re-export from src/screensavers/index.ts
  2. Add to the array in src/registry.ts

Development

bun install
bun run dev              # run directly (no build step)
bun run dev matrix-rain  # run a specific screensaver
bun run build            # compile to dist/
bun run lint             # check with biome
bun run format           # auto-fix lint/format

License

MIT