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

lazyhub

v26.5.4

Published

A lazygit-style GitHub TUI — every GitHub action without leaving your terminal

Readme

🦥 lazyhub

The high-performance, keyboard-driven terminal UI for GitHub.

CI npm version Node.js ≥20 Homebrew License: MIT

lazyhub is a terminal UI (TUI) that wraps the GitHub CLI (gh) into a cohesive, Vim-inspired experience. Inspired by the legendary lazygit, it surfaces Pull Requests, Issues, Actions, and Notifications in a lightning-fast interface, allowing you to manage your entire GitHub workflow without your fingers ever leaving the home row.


⚡️ Why lazyhub?

Context switching is a flow-killer. Jumping between your terminal and a browser to approve a PR or check a CI log fragments your focus. lazyhub brings the entire GitHub Web UI into your terminal.

  • 🚀 Zero Latency: No browser tabs, no heavy Electron apps. Just a raw, optimized TUI.
  • 🧠 AI-Native Review: Integrated with Anthropic’s Claude 3.5 Sonnet to analyze diffs and suggest fixes with a single keystroke.
  • 🔍 Fuzzy Search Everything: Filter lists, jump to files in a 5,000-line diff, or find a specific workflow run instantly.
  • 🎨 Elite Theming: Includes Tokyo Night, Catppuccin, and GitHub Dark/Light presets. Fully customizable via JSON.

🏗 Architecture

lazyhub is built on a decoupled, reactive architecture using React and Ink. It treats the gh CLI as its primary data engine, ensuring your local authentication and enterprise configurations just work.

graph TD
    User([User Input]) --> UI[React / Ink TUI]
    UI --> Hook[useGh Hook / 30s TTL Cache]
    UI --> Context[AppContext / State Management]
    Hook --> Executor[executor.js / gh CLI Wrapper]
    Hook --> AI[ai.js / Anthropic Claude API]
    Executor --> GH[GitHub CLI / GraphQL & REST]
    AI --> Claude[Claude 3.5 Sonnet]
    GH --> API[GitHub API]

🚀 Power User Features

🤖 AI Inline Review (A key)

Don't just look at code; understand it. While in the Diff View, press A. Claude scans your changes, identifies potential bugs or architectural smells, and lets you post those suggestions as real GitHub comments instantly.

🔭 Deep Diff Navigation

  • f (File Jump): Fuzzy search filenames within a PR to jump directly to the relevant hunk.
  • t (File Tree): Toggle a sidebar showing the directory structure of the changes.
  • s (Split View): Toggle between Unified and Side-by-Side diff modes.

🛠 Extensible Custom Panes

Need a view for your team's specific deployments or Gists? Define a custom pane in your config.json.

"customPanes": {
  "my-deploys": {
    "label": "Deployments",
    "icon": "🚀",
    "command": "gh api repos/{repo}/deployments"
  }
}

📦 Installation

via Homebrew (Recommended)

brew install saketh-kowtha/tap/lazyhub

via npm

npm install -g lazyhub

🎹 Keybindings (The Essentials)

| Key | Action | | --- | --- | | Tab | Cycle Navigation Panes | | j / k | Navigate List / Scroll Content | | Enter | View Detail / Open PR | | d | Open Diff View | | / | Fuzzy Search Current List | | A | Trigger AI Review (in Diff) | | m | Merge PR (Pick Strategy) | | r | Refresh (Bypass Cache) | | S | Settings & Themes | | ? | Full Keyboard Cheat Sheet |


🤝 Contributing

We welcome contributions from the community! Whether it's a bug fix, a new theme, or a feature request, check out our ARCHITECTURE.md to understand the project's internal invariants.

# Setup for development
npm install
npm run dev   # Auto-rebuild on change
npm test      # Run Vitest suite

📜 License

MIT © Saketh Kowtha