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

ssh-keys-manager-tui

v0.5.1

Published

SSH Keys Manager TUI — manage, generate, and switch SSH keys from the terminal

Readme

ssh-tui

SSH Keys Manager TUI — list, generate, rename, delete, and switch SSH keys right from your terminal.

100% offline. Zero data leaves your machine. No telemetry, no analytics, no network calls. Everything runs locally on your ~/.ssh/ files.

Built with Ink (React for CLI).

Install

npm install -g ssh-keys-manager-tui

Then run:

sshtui

Or without installing globally:

npx ssh-keys-manager-tui

Usage

sshtui scans ~/.ssh/ for existing key pairs, shows them in a list, and lets you manage them interactively.

Key bindings

| Key | Action | |-----|--------| | / | Navigate key list | | Enter | Activate selected key (load into ssh-agent) | | g | Generate new SSH key pair | | d | Delete selected key | | r | Rename selected key | | i | Show key details (fingerprint, comment, type) | | q / Ctrl+C | Quit |

Generate a key

  1. Press g to start
  2. Enter a name (e.g. id_ed25519_github)
  3. Select key type (ED25519, RSA 4096, ECDSA, ED25519-SK)
  4. Optionally enter an email/comment
  5. Optionally set a passphrase
  6. Confirm with Y

Activate a key

Select a key and press Enter. The key is loaded into ssh-agent (any previously active keys are removed). Your Git operations will now use this key.

The last active key is remembered in ~/.ssh-tui/config.json and is auto-loaded on next launch.

Uninstall

npm uninstall -g ssh-keys-manager-tui

Requirements

  • Node.js 18+
  • ssh-agent running (most desktop environments start it automatically)

How it works

  • 100% offline — no network calls, no telemetry, no data collection
  • Discovers key pairs by scanning ~/.ssh/* for private keys with matching .pub files
  • Uses ssh-add / ssh-add -D to manage keys in ssh-agent
  • Uses ssh-keygen for key generation, fingerprint inspection, and parsing
  • Persists last active key to ~/.ssh-tui/config.json