.env File Parser
Paste your .env file to parse and inspect variables. Detects value types, finds duplicate keys, and can mask sensitive values.
9 variables17 lines
Parsed Variables
| Key | Value | Type | |
|---|---|---|---|
| APP_NAME | MyApp | string | |
| APP_ENV | production | string | |
| DEBUG | false | boolean | |
| DATABASE_URL | postgresql://user:pass@localhost:5432/mydb | url | |
| DB_POOL_SIZE | 10 | number | |
| SECRET_KEY | super-secret-key-here | string | |
| JWT_EXPIRY | 3600 | number | |
| API_KEY | abc123xyz | string | |
| CDN_URL | https://cdn.example.com | url |
.env File Format
The .env format stores environment variables as KEY=VALUE pairs. Lines beginning with # are comments. Values can optionally be quoted with single or double quotes.
This tool parses entirely in your browser — nothing is sent to a server.