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

envware

v1.4.2

Published

envware CLI - Manage your .env files across projects and teams with local E2EE

Readme

🌸 envware

npm version License GitHub

Securely sync encrypted secrets across your devices and team.

Envware is a CLI tool designed to simplify environment variable management with a focus on security, privacy, and developer experience.

Why Envware?

Stop sharing .env files via Slack, DMs, or insecure notes. Envware ensures your secrets never touch the cloud in plain text.

  • 🔒 Zero-Trust Architecture: Built on a decentralized trust model. Your secrets are encrypted locally using AES-256-GCM. We never see your data.
  • 🔑 SSH Identity: Authorization is tied to your existing SSH keys. No complex setup, no passwords to leak.
  • 🏢 Multi-tenant Teams: Organize projects by teams with granular access control.
  • 🛡️ Secure Key Exchange: Access is granted by encrypting a Project Key directly for a user's verified public key. No intermediate codes.
  • ✨ Verification via Fingerprint: Verify collaborator identities using SHA256 fingerprints, making it immune to server-side tampering.

Quick Start

1. Installation

Run directly with npx:

npx envware login

2. Create or Select a Project

npx envware project create my-awesome-api

3. Push and Pull Secrets

# Upload your local .env (encrypted locally first!)
npx envware push

# On another machine, download and decrypt
npx envware pull

Security Model (How it works)

Envware uses a dual-key E2EE system:

  1. User Identity: Derived from your local SSH public key.
  2. Project Key: A unique AES-256 key generated for each project.
  3. Storage: The server only stores "encrypted blobs". The Project Key is stored encrypted with your SSH Public Key.

Verification Flow

To ensure absolute security even if the database is compromised:

  1. A collaborator requests access: envw request team/project.
  2. They share their unique identity: envw fingerprint.
  3. The owner approves the request: envw approve.
  4. The owner verifies the fingerprint displayed on their screen matches the collaborator's identity before the CLI encrypts the key.

Result: Mathematical certainty that secrets only open for authorized devices.

Core Commands

  • signup: Create a new account and your default team.
  • project: Manage projects (create, list, select).
  • team: Manage teams (create, list).
  • request <team/project>: Request access to a project.
  • approve: Approve pending requests (Owner/Admin only).
  • sync-access: Sync all your approved accesses.
  • fingerprint: Show your device SHA256 identity.
  • keys: Manage your authorized SSH keys.
  • status: Check your plan, team, and usage.

Website: https://www.envware.dev
Documentation: https://www.envware.dev/docs
GitHub: https://github.com/envware/cli 🌸