惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

The GitHub Blog
The GitHub Blog
M
MIT News - Artificial intelligence
Engineering at Meta
Engineering at Meta
云风的 BLOG
云风的 BLOG
博客园 - 叶小钗
Jina AI
Jina AI
Last Week in AI
Last Week in AI
The Cloudflare Blog
博客园 - 【当耐特】
Stack Overflow Blog
Stack Overflow Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
WordPress大学
WordPress大学
博客园_首页
I
InfoQ
G
Google Developers Blog
Martin Fowler
Martin Fowler
Recent Announcements
Recent Announcements
H
Help Net Security
U
Unit 42
Blog — PlanetScale
Blog — PlanetScale
阮一峰的网络日志
阮一峰的网络日志
P
Proofpoint News Feed
IT之家
IT之家
Microsoft Security Blog
Microsoft Security Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Why Your .env File Is Lying to You
Odejobi Abiola Samuel · 2026-06-25 · via DEV Community
Cover image for Why Your .env File Is Lying to You

Odejobi Abiola Samuel

Two weeks ago I deployed a service that crashed on the first request. Not because the code was wrong — because process.env.DATABASE_URL was undefined and nobody caught it until a user hit the endpoint.

I've made this mistake enough times to recognize the pattern: environment variables in Node.js are string | undefined. TypeScript shrugs. Validation is your problem. Most teams don't do it, or they scatter it across 15 files with parseInt() and ?? operators.

The Three Lies process.env Tells You

1. "This variable exists"

const dbUrl = process.env.DATABASE_URL
//    ^? string | undefined — TypeScript can't help

It might exist. It might not. You won't know until runtime. If it's undefined, the error surfaces at the point of first use — not at startup.

2. "This value is the right type"

const port = process.env.PORT // "3000" — it's a string!
app.listen(port + 1)          // listens on "30001", not 3001

PORT is semantically a number. At runtime it's a string. Every consumer has to parse it. Nobody does it consistently.

3. "The format is correct"

// .env
DATABASE_URL=localhost:5432/myapp  // forgot postgres://

// somewhere in your app
new URL(process.env.DATABASE_URL)  // TypeError: Invalid URL

No error at import. No error at server start. The first database query crashes.

The Manual Approach

I've written this function more times than I can count:

function getEnv() {
  const dbUrl = process.env.DATABASE_URL
  if (!dbUrl) throw new Error("DATABASE_URL is required")

  const port = parseInt(process.env.PORT ?? "3000", 10)
  if (isNaN(port) || port < 1 || port > 65535) {
    throw new Error("PORT must be between 1 and 65535")
  }

  const nodeEnv = process.env.NODE_ENV ?? "development"
  if (!["development", "production", "test"].includes(nodeEnv)) {
    throw new Error(`Invalid NODE_ENV: ${nodeEnv}`)
  }

  return { dbUrl, port, nodeEnv } as const
}

It works. But it's repetitive, undocumented, and TypeScript can't infer literal types from it. Every project reinvents this same function with slightly different bugs.

Schema-Based Validation

CtroEnv does the same thing with a schema:

import { defineEnv, string, number, pick } from "@ctroenv/core"

const env = defineEnv({
  DATABASE_URL: string().url().describe("PostgreSQL connection URL"),
  PORT: number().port().default(3000),
  NODE_ENV: pick(["development", "production", "test"] as const).default("development"),
})

  • env.PORT is number — already parsed
  • env.NODE_ENV is "development" | "production" | "test" — exact union, no typos
  • env.DATABASE_URL is string — guaranteed present and valid

If anything is missing or invalid, defineEnv() throws immediately with every error grouped:

● Missing required (1)

  DATABASE_URL  Add this variable to your .env file

✗ Invalid (1)

  PORT  Expected a port number (1-65535), received 0

No hunting through logs. The app crashes at import time, not on the first request.

What You Get

Problem Raw process.env CtroEnv
Type safety `string \ undefined`
Startup validation None All vars validated
Error clarity cannot read property of undefined Grouped, descriptive
Defaults Manual ?? .default()
Secret handling Silent .secret() masks at runtime
CI integration None ctroenv check, ctroenv validate

The Validators

string().url()              // valid URL
string().email()            // valid email (HTML5 regex)
string().port()             // port 1-65535
string().min(8)             // minimum length
string().max(255)           // maximum length
string().hostname()         // RFC 1123 hostname
string().regex(/^[a-z]+$/)  // custom pattern

number().int()              // integer
number().positive()         // > 0
number().port()             // 1-65535
number().min(1)             // minimum value
number().max(100)           // maximum value

boolean()                   // "true"/"false", "yes"/"no", "1"/"0", "y"/"n"
pick(["dev", "prod"])       // exact string union

// Chainable on all validators:
.optional() .default(v) .describe(t) .secret() .validate(fn)

One line per variable, and TypeScript infers everything from the schema.

npm install @ctroenv/core

Links: GitHub · Docs · npm

Next: Type-Safe Env Vars Without Zod