ENV File Parser
Parse .env files into a table view with variable name, value, and type detection.
Variables: 10
.env input
| Line | Name | Value | Type |
|---|---|---|---|
| 2 | DATABASE_URL | postgresql://localhost:5432/mydb | string |
| 3 | DB_HOST | localhost | string |
| 4 | DB_PORT | 5432 | integer |
| 5 | DB_SSL | true | boolean |
| 8 | NODE_ENV | production | string |
| 9 | PORT | 3000 | integer |
| 10 | API_KEY | sk-abc123def456ghi789 | string |
| 11 | ADMIN_EMAIL | admin@example.com | |
| 12 | DEBUG | false | boolean |
| 13 | LOG_LEVEL | info | string |
Related tools
Cookie ParserNetwork
Parse Set-Cookie headers and show name, value, domain, path, flags, and expiry.
JSON → CSVConverter
Convert JSON arrays to CSV locally.
CSV → JSONConverter
Convert CSV to JSON locally in your browser.
JSON to YAML ConverterConverter
Convert JSON to YAML with configurable indentation.
YAML to JSON ConverterConverter
Convert YAML to JSON and JSON to YAML locally in your browser.
JSON to XML ConverterConverter
Convert JSON objects to well-formed XML with indentation and attribute mapping options.