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

@boltenv.dev/cli

v3.9.0

Published

AirDrop for .env files — push/pull env vars via GitHub repo access

Readme


Install

npm i -g @boltenv.dev/cli

Or via curl:

curl -fsSL https://boltenv.dev/install | sh

Requires Node.js 22+.


Quick Start

# 1. Authenticate with GitHub
boltenv login

# 2. Push your .env (encrypted locally, uploaded as ciphertext)
boltenv push

# 3. Share the key with your teammate
boltenv key export
# → dGhpcyBpcyBhIDMyIGJ5dGUga2V5...

# Teammate imports the key and pulls
boltenv key import <base64-key>
boltenv pull

That's it. Your teammate now has the same .env — decrypted on their machine, never visible to the server.


Why boltenv

Your .env is the most important file in your project, and you're sharing it via Slack DMs.

| What you do today | What happens | |---|---| | Slack the .env | Plaintext in a chat log forever | | .env.example with fake values | Half the keys are wrong by Tuesday | | Copy from prod "carefully" | Someone copies the wrong DB and deletes users |

boltenv: encrypted on your machine, decrypted on theirs. The server never sees plaintext.


How It Works

  Your Machine                   boltenv Cloud                  Teammate's Machine
  ┌──────────┐                  ┌──────────────┐               ┌──────────────┐
  │ .env file │── AES-256-GCM ─>│  Encrypted   │── Decrypt ──>│  .env file   │
  │ (secrets) │   on YOUR       │  blob only   │   locally     │  (secrets)   │
  └──────────┘   machine        └──────────────┘               └──────────────┘
  1. Push — CLI encrypts your .env locally, uploads only the ciphertext
  2. Pull — CLI downloads ciphertext, decrypts locally with your key
  3. Auth — GitHub repo access = env access. No new accounts.

Commands

boltenv login                   # Authenticate with GitHub
boltenv push                    # Encrypt & upload your .env
boltenv pull                    # Download & decrypt .env
boltenv ls                      # Version history & metadata
boltenv whoami                  # Show current user & repo

Push

boltenv push                    # Push .env from current directory
boltenv push .env.production    # Push a specific file
boltenv push -e production      # Push to a specific environment
boltenv push -y                 # Skip confirmation prompt

Pull

boltenv pull                    # Pull .env to current directory
boltenv pull -e staging         # Pull from a specific environment
boltenv pull --version 3        # Pull a specific version (rollback)
boltenv pull --format json      # Output as JSON
boltenv pull --stdout           # Print to stdout (pipe anywhere)

Version History

$ boltenv ls

  myorg/myapp:development

  Keys    12
  TTL     permanent
  Latest  alice pushed 5 min ago

   * v3               12 keys             alice            5 min ago
   . v2               10 keys             bob              2 days ago
   . v1                8 keys             alice            1 week ago

Key Management

boltenv key export              # Get your key as base64 (share securely)
boltenv key import <base64>     # Import a teammate's key
boltenv key status              # Check if you have the key for this repo

Environments

boltenv auto-detects the environment from your git branch:

| Branch | Environment | |---|---| | main, master | production | | staging | staging | | develop, development | development | | anything else | development |

Override with -e:

boltenv push -e production
boltenv pull -e staging

CI/CD

# Set these in your CI environment:
export BOLTENV_TOKEN=ghp_xxx           # GitHub PAT with repo scope
export BOLTENV_KEY=base64-key-here     # From: boltenv key export
export BOLTENV_REPO=myorg/myapp        # Skip git detection

# Pull in CI
boltenv pull -y

Security

| | | |---|---| | Encryption | AES-256-GCM (NIST standard) | | Key derivation | HKDF-SHA256 (separate subkeys for encryption and HMAC) | | IV | 12 bytes, random per push | | Auth tag | 16 bytes (tamper detection) | | Server sees | Ciphertext + key fingerprint only | | Key stored at | ~/.boltenv/keys/{owner}/{repo}.key (0o600) |

The encryption key is generated locally and never transmitted. The server cannot decrypt your data.


Requirements

  • Node.js 22+
  • Git repo with a GitHub remote
  • GitHub account with repo access