Developer tools
.env to JSON
Parse dotenv-style KEY=VALUE lines into a JSON object. Comments and export prefixes are ignored.
JSON
{
"API_URL": "https://example.com",
"DEBUG": "true",
"NAME": "Ada Lovelace"
}Your data never leaves the browser.
How it works
- Paste your .env contents.
- JSON appears with each KEY as a property.
- Copy the object into your app or config.
FAQ
- Are quoted values supported?
- Yes β single and double quotes around values are stripped.
- Is the file uploaded?
- No. Parsing is local only.