Parse, edit, sort, and convert environment variable files. Supports .env, JSON, YAML, Docker, and shell export formats.
The .env file format stores environment variables as KEY=VALUE pairs. It's used by Node.js (dotenv), Python (python-dotenv), Docker, and many other tools for application configuration.
No. The .env file contains secrets and should be in .gitignore. Commit a .env.example file instead with placeholder values so team members know which variables are needed.
Values with spaces should be quoted: MY_VAR="hello world". Single quotes prevent variable expansion, double quotes allow it (in some parsers). Unquoted values end at the first whitespace in some parsers.