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

bizi-rs

v0.3.0

Published

Terminal UI for bizi, written in Rust

Readme

https://github.com/user-attachments/assets/5478763d-57c5-4201-8ee7-a4e6239a8bcf

bizi-rs

The bizi terminal UI, written in Rust with ratatui.

bizi-rs is a drop-in replacement for the bizi package: same commands, same keybindings, same layout, same binary name. It ships a single native executable per platform with no runtime to boot, so it starts faster and holds a much smaller memory footprint while tailing busy logs.

Install

pnpm install -g bizi-rs

Supported platforms: macOS arm64/x64 and Windows arm64/x64. Unlike the Bun build, the Windows arm64 package contains a native arm64 binary rather than an x64 one running under emulation.

Usage

Start the TUI from your project directory (where your task.config.json is):

bizi

Or specify a working directory:

bizi -C /path/to/project

CLI commands (perfect for your agents):

bizi run <task>     # Run a task and stream its logs
bizi cancel <task>  # Cancel a running task and its subtasks
bizi stat <task>    # Show task status (add --json for machine output)
bizi init           # Create a starter task.config.json

bizi <task> is shorthand for bizi run <task>.

Keybindings

| Key | Action | | ------------------------- | ------------------------------------------- | | /k, /j | Move between tasks (or scroll the log view) | | /h, /l | Move between the task and log panes | | opt/ctrl + / | Jump between top-level tasks | | / | Focus the task search box | | enter | Run or restart the exact task typed | | r | Run or restart the selected task | | c | Cancel the selected run | | m | Toggle aggregated vs. own logs | | cmd+c / ctrl+c | Copy the log selection (ctrl+c also quits) | | q | Quit |

Drag with the mouse over the log pane to select text, then press cmd+c (or ctrl+c) to copy it. Copying goes through the platform clipboard (pbcopy, clip, wl-copy/xclip/xsel) and falls back to OSC52, which is what gets used over SSH. cmd+c needs a terminal that speaks the kitty keyboard protocol (Kitty, Ghostty, WezTerm, recent iTerm2); everywhere else use ctrl+c.

Development

The TUI itself lives in crates/bizi-tui; this package only wraps the compiled binaries for npm.

cargo run -p bizi-tui          # run against a local bizi server
cargo test -p bizi-tui         # unit tests
node scripts/build.mjs all     # cross compile every published target