.env File Parser
Paste .env file content to see each variable parsed into a clean table, with an option to export as JSON.
Frequently asked questions
Does this handle quoted values and comments?+
Yes, both single and double quotes around a value are stripped, and lines starting with # are treated as comments and ignored, matching standard .env file conventions.
Does it support the `export VAR=value` syntax some .env files use?+
Yes, an optional leading `export` keyword (used so a .env file can also be sourced directly in a shell) is recognized and stripped.
Is it safe to paste real secrets into this?+
Parsing happens entirely in your browser, nothing is sent anywhere. That said, treat any tool the same way you'd treat pasting secrets into any browser tab, don't paste production credentials into a tool you haven't already decided to trust.