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

@harry-kp/kitz

v0.1.0

Published

Terminal UI for AWS MSK Kafka with IAM auth, multi-environment switching, and live topic and consumer-group inspection

Readme

kitz

your Kafka desk clerk

A terminal UI for AWS MSK with first-class IAM auth, multi-environment switching, and live topic / consumer-group inspection. The wedge no other Kafka TUI has: kitz authenticates to MSK with your ~/.aws creds (SASL OAUTHBEARER / SigV4) — no broker-string, cert, or JAAS juggling.

⚠️ Work in progress · macOS only for now. Linux/Windows builds are planned. The prebuilt macOS binary is fully self-contained (librdkafka and OpenSSL are baked in) — nothing to install alongside it.

test crates.io license

Features

  • IAM-native auth - connects to MSK with your AWS credentials; plaintext and plain-TLS clusters supported too (auth = "iam" | "tls" | "plaintext").
  • Environment hot-switch - 19 to jump between stag / preprod / prod / regression without restarting. Prod is tagged red with a delete guardrail.
  • Bird's-eye dashboard - Topics, live Config/Detail (flip with f), an incoming-events graph, and an activity Log - all at once.
  • Detail - partitions, ISR/replicas, watermarks, ~event count, and the consumer groups actually subscribed to the topic.
  • Peek - browse recent events with pretty-printed JSON; copy payload/key.
  • Consumer groups - full-screen view (G); delete with confirmation.
  • Admin - create topic, add partitions, delete topic/group.
  • kitz doctor <env> - layer-by-layer connectivity diagnosis.

Install

Prebuilt binary (recommended) - no dependencies, nothing to compile:

# npm
npm install -g @harry-kp/kitz

# Homebrew
brew install Harry-kp/tap/kitz

# curl
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/Harry-kp/kitz/releases/latest/download/kitz-installer.sh | sh

These ship a self-contained macOS binary - librdkafka and OpenSSL are baked in, so there's nothing else to install.

From source (cargo install) compiles librdkafka, so it needs cmake + Xcode Command Line Tools:

brew install cmake
cargo install kitz

Quick start

cp kitz.toml.example kitz.toml   # then edit: your brokers, regions, auth
export AWS_PROFILE=your-profile    # or set aws_profile per-env in the toml
kitz

kitz.toml (also read from ~/.config/kitz/config.toml):

[[env]]
name = "stag"
bootstrap = "b-1.mycluster.xxxxx.kafka.eu-central-1.amazonaws.com:9092"
region = "eu-central-1"
auth = "plaintext"   # 9092=plaintext · 9094=tls · 9098=iam
prod = false

Note: MSK brokers are usually private VPC IPs - run kitz somewhere that can route to them (on the VPC's VPN, or a bastion inside the VPC). Stuck? kitz doctor <env> tells you whether it's network, creds, or protocol.

Keys

| Key | Action | |---|---| | 19 / e | switch environment | | / h l | move focus between panes | | ↑↓ / j k | navigate · g jump top | | f | flip Detail ⟷ Config | | w | event counts + live graph | | p | peek events (y/Y copy) | | y | copy selected topic name | | / | filter topics | | c / a / d | create / add-partitions / delete topic | | G | consumer groups | | x | actions menu · ? help · q quit |

Building from source

kitz links librdkafka (built from source via cmake):

brew install cmake        # macOS
cargo build --release

License

MIT © Harry KP