ekofyi
Liveautomationshipped v1.0.0

Environment Variable Manager

A utility for managing environment variables. Paste a .env file to validate syntax, detect duplicates, find empty values, and sort alphabetically. Convert between .env, JSON, YAML, and Docker env-file formats. Generate .env.example with values stripped. Everything runs client-side — your secrets stay local.

envdotenvconfigdockerdevops

Parsed (6 variables)

NODE_ENVproduction
DATABASE_URLpostgres://user:pass@localhost:5432/mydb
API_KEYsk…89🔒 secret
JWT_SECRETsu…re🔒 secret
PORT3000
DEBUGfalse

Findings

DATABASE_URL: Value looks like a secret but key name doesn't suggest it

format:
export NODE_ENV="production"
export DATABASE_URL="postgres://user:pass@localhost:5432/mydb"
export API_KEY="sk_live_abc123def456ghi789"
export JWT_SECRET="super-secret-key-do-not-share"
export PORT="3000"
export DEBUG="false"

🔒 Parsing happens locally. Don't paste real production secrets — use this for dev .env files.