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

klazy

v1.2.0

Published

klazy - lazy kubectl wrapper with fuzzy search

Readme

klazy

npm version npm downloads license

Fuzzy kubectl wrapper. No dependencies.

klazy demo

npm install -g klazy

Use as kl or klazy.

Commands

| Command | Description | | ------------------- | ------------------------ | | klazy c | Select context | | klazy c - | Previous context | | klazy cs | Current context | | klazy ns | Select namespace | | klazy ns <name> | Switch namespace | | klazy ns - | Previous namespace | | klazy get | List resources | | klazy get deploy | List deployments | | klazy get svc -a | Services, all namespaces | | klazy get pvc | Persistent volume claims | | klazy get ns | List namespaces | | klazy get nodes | List nodes | | klazy exec | Exec into pod | | klazy exec <name> | Exec (fuzzy match) | | klazy exec -p | Exec with context picker | | klazy desc | Describe pod | | klazy desc -p | Describe with picker | | klazy logs | Stream logs | | klazy logs -p | Logs with context picker | | klazy logs --pipe | Pipe logs through tool | | klazy logss | Stream service logs | | klazy logss -p | Service logs with picker | | klazy env | Pod environment | | klazy env -p | Env with context picker | | klazy get -p | List with context picker | | klazy events | Recent events | | klazy restart | Restart pod | | klazy copy | Copy files | | klazy del | Delete pod | | klazy top | Metrics | | klazy pf | Port forward (pod) | | klazy pf -p | Port forward with picker | | klazy pfs | Port forward (service) | | klazy pfs -p | Service forward w/picker | | klazy r | Repeat last | | klazy h | Help |

Features

  • Fuzzy searchklazy exec api matches api-server-abc123
  • Colored status — Running (green), Pending (yellow), Error (red)
  • Quick switch- returns to previous context or namespace
  • All namespaces-a searches everywhere
  • Context picker-p selects context → namespace → resource
  • Pipe support--pipe tspin pipes logs through external tools
  • Zsh completioneval "$(klazy completion zsh)"

Examples

# Quick workflow in current namespace
klazy exec api
klazy logs nginx
klazy env worker

# Cross-cluster with picker (-p)
klazy exec -p      # context → namespace → pod → shell
klazy logs -p      # context → namespace → pod → logs
klazy pf -p        # context → namespace → pod → ports

# Pipe logs through external tools
klazy logs nginx --pipe tspin   # colorized logs with tailspin
klazy logs api --pipe "jq ."    # parse JSON logs

# Switch context and namespace
klazy c prod && klazy ns default
klazy c -          # previous context
klazy ns -         # previous namespace

# Copy files
klazy copy nginx:/var/log/app.log ./

Credits

Fork of laku.