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

matrix-top

v1.0.1

Published

htop meets The Matrix - A gorgeous cyberpunk terminal process monitor with falling code rain background.

Readme

🕶️ matrix-top (Pure Node.js Edition)

A cyberpunk terminal process monitor where htop meets The Matrix code waterfall.

It is written in 100% pure Node.js with zero dependencies. It reads the Linux /proc filesystem directly and uses raw ANSI escape codes for double-buffered, flicker-free rendering.

Cyberpunk Terminal License Dependencies


🚀 Features

  • Falling Process Rain Streams: Process parameters form the text trails that fall down your screen in spaced columns.
  • Dynamic Speed & Colors:
    • Speed: High CPU processes fall rapidly (spiking like lightning), while idle processes drift down slowly.
    • Colors: High CPU processes fall in flashing red trails, intermediate loads in yellow, and idle ones in standard green.
  • Historical Load Waterfalls:
    • The far-left column streams a scrolling load bar representing total CPU usage history.
    • The far-right column streams a scrolling load bar representing virtual Memory usage history.
    • Waves of green, yellow, and red blocks flow downwards representing load surges over time!
  • Interactive Cursor & Inspect Mode:
    • Pressing Space freezes the waterfalls and process streams in place.
    • Use Left / Right arrow keys to move a glowing cursor across columns.
    • The top bar displays full inspection metrics for the highlighted column, and Up / Down arrows let you scroll long command lines horizontally!
    • Pressing k or F9 on a highlighted process triggers a red confirmation popup to terminate it (SIGTERM).
  • Dynamic Filter & Spacer morphing:
    • Search filtering instantly updates column bindings.
    • Matching processes fall as readable text streams, while the rest of the columns morph into classic Katakana Matrix code rain!
  • Double-Buffered Render Engine: High speed, zero screen flicker, and extremely low CPU utilization.
  • Pure JavaScript & Zero Dependencies: Compiled, lightweight, and requires no Python, pip, or custom packages.

📦 Requirements

  • Linux (uses the /proc filesystem directly).
  • Node.js (v12+ recommended).

📥 Installation & Running

1. Run it directly (Local clone)

Inside the repository directory, run:

# Run using npm start
npm start

2. Install globally (Local npm link)

Inside the repository directory, run:

npm install -g .

Now you can launch it from anywhere in your terminal:

matrix-top

🎮 Controls & Keybindings

| Key | Action | | --- | --- | | Space | Pause/Resume animation (locks column selector cursor) | | Left / Right or h / l | Move selection cursor over columns (when Paused) | | Up / Down or j / k | Scroll highlighted process COMMAND horizontally (when Paused) | | F3 or / or f | Search/Filter processes (matches name, args, paths) | | F6 or s | Open Sort Field Selector | | F4 or I | Invert sorting order direction (Ascending / Descending) | | F9 or k | Terminate selected process (confirms with red modal; when Paused) | | h or ? | Open Help modal | | Esc / q / F10 | Close menus / Exit application |