☰
Home
/
Productivity
/
.env Parser
⚙️
.env Parser
Parse and validate .env files
☆
Bookmark
Loading tool…
.env file
# App configuration APP_NAME=MyApp APP_ENV=development PORT=3000 DEBUG=true # Database DATABASE_URL=postgresql://user:password@localhost:5432/mydb DB_POOL_SIZE=5 # Auth JWT_SECRET=super-secret-key-here JWT_EXPIRES_IN=7d # External APIs STRIPE_SECRET_KEY=sk_test_abc123 SENDGRID_API_KEY=SG.abc123
Parsed (10 vars)
APP_NAME
MyApp
APP_ENV
development
PORT
3000
DEBUG
true
DATABASE_URL
postgresql://user:password@localhost:5432/mydb
DB_POOL_SIZE
5
JWT_SECRET
super-secret-key-here
JWT_EXPIRES_IN
7d
STRIPE_SECRET_KEY
sk_test_abc123
SENDGRID_API_KEY
SG.abc123
As JSON
⧉ Copy
{ "APP_NAME": "MyApp", "APP_ENV": "development", "PORT": "3000", "DEBUG": "true", "DATABASE_URL": "postgresql://user:password@localhost:5432/mydb", "DB_POOL_SIZE": "5", "JWT_SECRET": "super-secret-key-here", "JWT_EXPIRES_IN": "7d", "STRIPE_SECRET_KEY": "sk_test_abc123", "SENDGRID_API_KEY": "SG.abc123" }