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

@nishan30/envoy-cli

v1.0.2

Published

Secure secret management with end-to-end encryption

Readme

Envoy CLI

🔐 Secure secret management with end-to-end encryption

Envoy is a command-line tool for managing environment variables and secrets with end-to-end encryption. Push your secrets once, pull them anywhere.

Features

End-to-End Encryption - Your secrets are encrypted before leaving your machine
Team Collaboration - Securely share secrets with your team
Git Integration - Automatically detects your repository
Zero-Knowledge - We can't read your secrets, even if we wanted to
RepoKey Support - Deploy secrets to CI/CD without storing private keys

Installation

npm install -g @nishan30/envoy-cli

Quick Start

1. Get Your API Key

Visit https://envoy-it.netlify.app/dashboard and generate an API key.

2. Initialize Envoy

envoy init --api-key evy_api_YOUR_KEY_HERE

This will:

  • Authenticate with the Envoy server
  • Generate encryption keys (downloads id_x25519 private key file)
  • Save your configuration

⚠️ IMPORTANT: Store your id_x25519 private key file securely! You'll need it to decrypt your secrets.

3. Push Your Secrets

envoy push -f .env

This will:

  • Read your .env file
  • Encrypt the contents with your public key
  • Upload to secure storage
  • Generate a RepoKey for CI/CD deployments

4. Pull Your Secrets

On another machine (with your private key):

envoy pull

In CI/CD (with RepoKey):

envoy pull --key evk_YOUR_REPO_KEY_HERE

Commands

envoy init

Initialize Envoy CLI with your API key.

envoy init --api-key evy_api_YOUR_KEY_HERE

Options:

  • --api-key - Your API key from the dashboard (required)
  • --private-key - Path to existing private key file (optional)
  • --api-url - Custom API URL for self-hosting (optional)

envoy push

Push secrets to the server.

envoy push -f .env

Options:

  • -f, --file - Path to your environment file (default: .env)

envoy pull

Pull secrets from the server.

# Pull with your identity (requires private key)
envoy pull

# Pull with RepoKey (for CI/CD)
envoy pull --key evk_YOUR_REPO_KEY_HERE

Options:

  • --key - RepoKey for anonymous pull (for CI/CD)
  • -o, --output - Output file path (default: .env)

envoy configure

Configure Envoy settings.

# View current configuration
envoy configure --show

# Set API URL (for self-hosting)
envoy configure --api-url https://your-api.com

Workflow Example

Developer Workflow

# One-time setup
npm install -g @nishan30/envoy-cli
envoy init --api-key evy_api_xxx

# Push secrets from your local .env
envoy push -f .env

# On another machine
envoy pull  # Downloads your .env file

CI/CD Workflow

# In your CI/CD pipeline (GitHub Actions, GitLab CI, etc.)
- name: Install Envoy
  run: npm install -g @nishan30/envoy-cli

- name: Pull Secrets
  run: envoy pull --key ${{ secrets.ENVOY_REPO_KEY }}
  
# Now your .env file is available!

Team Collaboration

Invite team members from the web dashboard:

  1. Go to your repository page
  2. Click "Invite Member"
  3. Enter their email
  4. Upload your private key to re-wrap the secret for them
  5. They can now envoy pull with their own credentials

Security

  • Client-Side Encryption: All encryption happens on your machine
  • X25519 + XChaCha20-Poly1305: Industry-standard algorithms
  • Zero-Knowledge: Server never sees your plaintext secrets
  • Key Wrapping: Secrets are wrapped per-user for team access

Support

License

MIT