getenvguard
v2.0.0
Published
Secure Environment Variable & Secret Management CLI
Maintainers
Readme
🔐 EnvGuard CLI
Secure Environment Variable Management CLI for Developers and Teams.
EnvGuard CLI allows developers to pull encrypted environment variables directly into local project .env files without sharing secrets over chat or committing them to Git repositories.
All secrets are encrypted at rest with AES-256-GCM on the server.
⚡ Quick Start
1. Install CLI Globally
npm install -g getenvguard2. Authenticate Terminal
envguard loginOpens your browser to authorize your terminal session and save your Personal Access Token securely.
3. Pull Secrets to .env
envguard pullDownloads your project secrets straight to a local .env file.
📖 Command Reference
| Command | Options | Description |
| :--- | :--- | :--- |
| envguard login | --token <pat> | Authorize CLI session via browser OAuth or pass PAT token directly |
| envguard pull | --project, -p <name>--env, -e <name>--out, -o <file> | Pull secrets for a specific project, environment, and custom output filename |
| envguard help | N/A | Display CLI help menu and command options |
Usage Examples
# Pull default project secrets for development
envguard pull
# Pull secrets for specific project and production environment
envguard pull --project "My Mobile App" --env production
# Short flags syntax with custom output file
envguard pull -p "My Mobile App" -e staging -o .env.staging🌐 Official Links
- npm Package: https://www.npmjs.com/package/getenvguard
- Website: https://getenvguard.com
- Documentation: https://getenvguard.com/docs
- License: MIT © 2026 EnvGuard Team
