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

node-ssh-manager

v0.3.0

Published

Local TUI SSH host manager with an encrypted vault

Readme

node-ssh-manager

单用户本地 TUI SSH 连接管理器。安装后使用命令 sshm,主机条目存放在加密 vault 中。

安装

需要 Node.js 18+。

npm install -g node-ssh-manager

也可直接运行,不全局安装:

npx --package node-ssh-manager sshm

使用

sshm

首次运行会引导设置主密码并创建空 vault。

当前限制

  • 仅支持密码认证(不支持 SSH key / agent / ProxyJump)
  • 单用户、单机本地使用(无多端同步、无团队共享)
  • 无导入/导出,无 SSH config 解析

主界面快捷键

  • ↑ / ↓ 或 k / j:上下移动
  • Enter:连接选中主机
  • a:新增主机
  • e:编辑选中主机
  • d:删除选中主机
  • p:查看选中主机的密码
  • c:更改主密码
  • q:退出

新增或编辑主机时,使用 Tab / Shift+Tab 切换字段、Ctrl+S 保存、 Ctrl+R 显示或隐藏密码、Esc 取消。

更改主密码时,先输入当前主密码,再输入并确认新主密码。Esc 取消。

文件位置

  • ~/.sshm/vault.enc — 加密的主机数据
  • ~/.sshm/known_hosts.json — 已信任的主机指纹

加密说明

Vault 使用 AES-256-GCM 加密,密钥由主密码经 scrypt KDF 派生。忘记主密码 = 永久丢失所有数据,没有任何恢复机制,请妥善保管。

从源码开发

pnpm install
pnpm build
node bin/sshm.js

开发时也可直接:

pnpm dev

License

MIT