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 πŸ™

Β© 2025 – Pkg Stats / Ryan Hefner

cryenv

v0.3.0

Published

πŸ” Securely collect and manage missing .env variables via encrypted CLI surveys.

Downloads

837

Readme

CryEnv πŸ” - Secure .env Surveys for Teams

NPM Version GitHub Stars License: MIT

Effortlessly collect & manage missing .env variables in a secure way.


πŸ”Ή What is CryEnv?

CryEnv is a CLI tool that helps teams securely collect missing environment variables by creating interactive encrypted surveys.

With CryEnv, you can:

  • Detect missing .env variables in your project.
  • Create encrypted surveys to request missing values.
  • Securely share a survey token with a team member.
  • Import responses back into your .env file.
  • Ensure only the creator can decrypt responses.

βœ… Fast.
πŸ” Secure.
πŸ› οΈ Easy to use.


πŸ”’ Security & Data Handling

CryEnv is designed with security and privacy in mind. Here’s how data is handled:

Questions (Unencrypted)

  • Questions are not encrypted and are stored in base64 format with zlib compression.
  • Do not include sensitive data in questions. Use them only to describe what information is needed.
  • Questions are used to guide the recipient and are not considered secret.

Answers (Encrypted)

  • Answers are fully encrypted using a combination of AES-256-CBC and RSA:
    1. Compressed with zlib.
    2. Encrypted with a randomly generated AES-256 key.
    3. The AES key is encrypted using the creator’s RSA public key.
    4. The final payload is encoded in base64 for easy sharing.
  • Only the survey creator can decrypt the answers using their private key.

Email Feature (Optional)

  • CryEnv can send survey links via email using node-fetch and a private server at webto.pro.
  • No sensitive data is sent or stored on the server. Only the encrypted survey token is transmitted.
  • Emails are used solely for convenience and are not required. You can share tokens manually.

Guarantees

  • No data is stored on external servers.
  • Emails are not saved or shared with third parties.
  • The email feature is optional and can be skipped if you prefer manual sharing.

πŸš€ Quick Start

No installation required! Just use npx:

npx cryenv

This will guide you through creating an encrypted survey for missing environment variables.

To fill a survey:

npx cryenv --fill YOUR_TOKEN

To import responses into your .env file:

npx cryenv --import YOUR_TOKEN --path=.env

πŸ” How It Works?

1️⃣ Create a survey with missing .env keys.
2️⃣ Share the generated token with a teammate.
3️⃣ The recipient fills the survey via CLI.
4️⃣ Responses are securely encrypted – only you can decrypt them.
5️⃣ Import the responses directly into your .env file.

πŸ”’ All data remains private & secure – even CryEnv cannot read the responses.


πŸ“¦ Installation (Optional)

You can install CryEnv globally:

npm install -g cryenv

Now you can use it without npx:

cryenv

πŸ› οΈ Commands & Usage

1️⃣ Detect missing .env variables

Automatically scan your .env.example or another file:

npx cryenv --env .env.example

This will create a survey with all missing variables.


2️⃣ Create a new survey

npx cryenv

You'll be guided through an interactive setup.


3️⃣ Fill a survey (as a recipient)

If someone shares a CryEnv token with you, fill it like this:

npx cryenv --fill YOUR_TOKEN

You'll be prompted to enter values.


4️⃣ Import responses into .env

npx cryenv --import YOUR_TOKEN --path=.env

This will decrypt responses and add them to your .env file.


5️⃣ Restore a saved survey

npx cryenv --restore FILE

Useful if you need to re-import or review responses.


πŸ” How CryEnv Ensures Security?

βœ” All responses are encrypted.
βœ” Only the survey creator can decrypt responses.
βœ” Survey tokens never expose raw data.
βœ” No external servers are used – works fully offline.


πŸ’‘ Example Workflow

Imagine you're working on a team project. Some environment variables are missing, and you need your teammate to fill them securely.

  1. You create a survey and get a unique token:

    npx cryenv --env .env.example
  2. You share the token with a teammate:

    npx cryenv --fill YOUR_TOKEN
  3. They fill the survey without seeing other values.

  4. You import their encrypted responses into .env:

    npx cryenv --import YOUR_TOKEN --path=.env

πŸŽ‰ Done! Your .env file is now complete – securely.


πŸ“œ License

CryEnv is licensed under the MIT License.
Β© 2025 Unbywyd.


πŸ”— Links

πŸ”Ή NPM: CryEnv on NPM
πŸ”Ή GitHub: CryEnv Repository
πŸ”Ή Issues: Report a bug


πŸš€ Secure, fast, and efficient .env management for teams!

Need more features? Open an issue or contribute on GitHub! 😊