.env File Parser
FreePaste any .env file — view as table, validate format, mask secrets and export to JSON, YAML or shell syntax.
.env Input
16 vars
Variables
| Key | Value | |
|---|---|---|
NODE_ENV | production | |
APP_NAME | MyApp | |
APP_URL | https://example.com | |
PORT | 3000 | |
DATABASE_URL | postgresql://user:password@localhost:5432/mydb | |
DB_HOST | localhost | |
DB_PORT | 5432 | |
DB_NAME | mydb | |
JWT_SECRETsecret | your••••••••••••••••••••••••••••••••• | |
JWT_EXPIRES_IN | 7d | |
STRIPE_SECRET_KEYsecret | sk_t•••••••••••••••••••••••••••• | |
STRIPE_WEBHOOK_SECRETsecret | whse•••••••••• | |
SENDGRID_API_KEYsecret | SG.x••••• | |
REDIS_URL | redis://localhost:6379 | |
ENABLE_ANALYTICS | true | |
ENABLE_BETA | false |
16
Total
4
Secrets
0
Issues
{
"NODE_ENV": "production",
"APP_NAME": "MyApp",
"APP_URL": "https://example.com",
"PORT": "3000",
"DATABASE_URL": "postgresql://user:password@localhost:5432/mydb",
"DB_HOST": "localhost",
"DB_PORT": "5432",
"DB_NAME": "mydb",
"JWT_SECRET": "your-super-secret-jwt-key-change-this",
"JWT_EXPIRES_IN": "7d",
"STRIPE_SECRET_KEY": "sk_test_4eC39HqLyjWDarjtT1zdp7dc",
"STRIPE_WEBHOOK_SECRET": "whsec_test_xxx",
"SENDGRID_API_KEY": "SG.xxxxxx",
"REDIS_URL": "redis://localhost:6379",
"ENABLE_ANALYTICS": "true",
"ENABLE_BETA": "false"
}Reviews
Sign in to write a review