| Key | Value | Status |
|---|---|---|
| Paste your .env content above to parse it | ||
.env file into the text area above..env.example.
The .env file format is used by virtually every modern web framework — Node.js via dotenv, Python via python-decouple, Ruby, PHP, and more — to separate configuration from code. This parser reads your file in the browser, displays every variable in a structured table, and flags common mistakes like missing values or accidentally duplicated keys. Your content never leaves your device.
All parsing happens entirely in your browser using JavaScript — no data is sent to any server. That said, real secrets like API keys and database passwords should be treated with care. Consider using dummy values when testing in a shared environment.
Standard dotenv syntax: KEY=value pairs, # comments, and blank lines. Quoted values (KEY="hello world" or KEY='value') have their quotes stripped. Lines that do not match the KEY=value pattern are flagged as invalid.
If the same key appears more than once in a .env file, most dotenv libraries use the first occurrence and silently ignore later ones. This tool highlights duplicates so you can clean them up and avoid unexpected behaviour.