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

beakcrypt

v0.0.5

Published

Secure environment variable management with E2E encryption

Readme

beakcrypt

Secure environment variable management with end-to-end encryption. Secrets are encrypted on your machine before leaving it — beakcrypt never sees plaintext values.

Installation

npm install -g beakcrypt

Requires Node.js 20 or later.

Quick start

# Log in with GitHub
beakcrypt login

# Link your project directory
beakcrypt link

# Push your local .env.local to the cloud
beakcrypt push

# Pull secrets back down on another machine
beakcrypt pull

Commands

Auth

beakcrypt login           Log in via GitHub OAuth
beakcrypt logout          Log out and remove local credentials
beakcrypt whoami          Show the currently logged-in user

logout accepts -y, --yes to skip the confirmation prompt.

Project linking

beakcrypt link            Link the current directory to a project

Secrets sync

beakcrypt pull [file]     Pull secrets to a local .env file (default: .env.local)
beakcrypt push [file]     Push secrets from a local .env file (default: .env.local)
beakcrypt run -- <cmd>    Run a command with secrets injected as environment variables

All sync commands accept these flags:

-o, --org <slug>          Organization slug
-p, --project <name>      Project name
-e, --env <name>          Environment name

push also accepts -y, --yes to skip the confirmation prompt.

pull also accepts:

--output <path>           Output file path including filename
                          (overrides the positional [file] argument)

The destination can be specified as a positional argument or via --output. Both accept any path including the filename:

beakcrypt pull secrets/.env.development
beakcrypt pull --output /home/user/projects/app/.env.local
beakcrypt pull --output ../shared/.env -e staging

Secrets management

beakcrypt secrets list                  List secrets (values masked by default)
beakcrypt secrets list --reveal         Decrypt and print plaintext values
beakcrypt secrets set <KEY=VALUE...>    Set one or more secrets
beakcrypt secrets remove <KEY...>       Remove secrets by key
beakcrypt secrets clear                 Delete all secrets in an environment

All secrets subcommands accept -o, -p, -e flags.
secrets clear also accepts -y, --yes to skip the confirmation prompt.

Organizations

beakcrypt org list                      List your organizations

Environments

beakcrypt env list                      List environments for the linked project
beakcrypt env create <name>             Create a new environment
beakcrypt env remove <name>             Delete an environment and all its secrets

All env subcommands accept -o, --org <slug> and -p, --project <name> flags.
env remove also accepts -y, --yes to skip the confirmation prompt.

Projects

beakcrypt project list                  List projects in an organization
beakcrypt project create <name>         Create a new project
beakcrypt project remove <name>         Delete a project and all its data

All project subcommands accept -o, --org <slug> (defaults to the linked project's organization).
project remove also accepts -y, --yes to skip the confirmation prompt.

Examples

# Inject secrets into a dev server
beakcrypt run -- npm run dev

# Push a specific env file to a named environment
beakcrypt push .env.production -e production

# Set individual secrets directly
beakcrypt secrets set API_KEY=abc123 DATABASE_URL=postgres://...

# Pull into a custom file path (positional)
beakcrypt pull .env.staging -e staging

# Pull into a specific directory and filename (flag)
beakcrypt pull --output config/.env.local

# Pull staging secrets into a sibling directory
beakcrypt pull --output ../frontend/.env -e staging

# Reveal decrypted values in the terminal
beakcrypt secrets list --reveal

# Create a staging environment in a specific project
beakcrypt env create staging --org acme --project api

# Remove an environment (prompts for confirmation)
beakcrypt env remove preview --org acme --project api

# List all projects in an org
beakcrypt project list --org acme

# Create a new project
beakcrypt project create payments --org acme

# Delete a project without confirmation prompt
beakcrypt project remove old-service --org acme --yes