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

evault-cli

v0.1.1

Published

Secure cross-platform TUI + CLI for managing environment variables. Secrets in the OS keyring, metadata in encrypted SQLite, projects bound via evault.toml manifests.

Readme

evault-cli

npm License: MIT

Secure cross-platform TUI + CLI for managing environment variables. npm wrapper around the Rust binary published at github.com/stescobedo92/hide-env-keys.

The package is published as evault-cli on npm because the shorter name evault was rejected by npm's anti-squat policy (too close to the existing vault package). The binary the package installs is still called evault.

Install

# Global install
npm install -g evault-cli

# Project-local
npm install --save-dev evault-cli
npx evault

The package uses npm optionalDependencies for platform binaries. The wrapper resolves the matching optional package at runtime; no network download or script runs during npm install. Supported platforms:

| Platform | Architectures | |---|---| | macOS | x64, arm64 (Apple Silicon) | | Linux | x64 | | Windows | x64 |

For platforms not listed above, install from source instead:

cargo install evault-cli

Usage

# Launch the interactive TUI
evault

# Or use any subcommand non-interactively
evault ls
evault add API_KEY --secret
evault link API_KEY --project ./my-app
evault run --project ./my-app -- npm start

See the main repository README for the full feature set, including:

  • TUI dashboard with CRUD, link-to-project, view-value, run-in-project, fuzzy filter
  • Native OS keyring storage for secrets (Credential Manager / Keychain / Secret Service)
  • Optional SQLCipher encryption for the metadata DB
  • evault.toml project manifest with profiles for dev / staging / prod
  • Source-code scanner that finds orphan and unused variables

Where the binary lives

After install, the native binary is at:

node_modules/evault-cli-darwin-x64/bin/evault
node_modules/evault-cli-darwin-arm64/bin/evault
node_modules/evault-cli-linux-x64/bin/evault
node_modules/evault-cli-windows-x64/bin/evault.exe

Troubleshooting

optional package ... is not installed — reinstall with optional dependencies enabled. Avoid --omit=optional for this package, or install from source with cargo install evault-cli.

unsupported platform ... — the npm package does not currently ship a pre-built binary for that OS/CPU pair. Install from source with cargo install evault-cli.

platform package is installed but binary is missing — the platform package publish is incomplete. Open an issue at github.com/stescobedo92/hide-env-keys/issues.

License

MIT