Env Parser
Read .env files into a table or JSON.
Loading tool
Paste a .env and see keys, values, and export flags. Quotes and escaped newlines follow common dotenv rules.
How to use this tool
- Paste the snippet. Drop JSON, code, or a token into the input. It is not sent to a server.
- Run the action. Format, decode, or generate. Parse errors stay on the page.
- Copy the output. Copy the result back into your editor or terminal.
Secrets
Treat the paste box as sensitive. Nothing is sent, but shoulder surfing still applies. Clear the page when you are done.
Frequently asked
Are comments kept on export?
A keep-comments option writes them back. JSON export drops them.
Does it expand $OTHER_VAR?
Optional expansion uses values already defined above in the file.
What about export FOO=bar?
The export prefix is recognized and stored as a flag.
Can it read .env.local multiline values?
Double-quoted values may span lines with \n.
Do KEY=value lines get posted?
No. Treat the box as local, then clear it.