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

推荐订阅源

小众软件
小众软件
V
Visual Studio Blog
博客园 - 三生石上(FineUI控件)
Last Week in AI
Last Week in AI
Blog — PlanetScale
Blog — PlanetScale
爱范儿
爱范儿
J
Java Code Geeks
A
About on SuperTechFans
F
Fortinet All Blogs
B
Blog
aimingoo的专栏
aimingoo的专栏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Engineering at Meta
Engineering at Meta
Y
Y Combinator Blog
有赞技术团队
有赞技术团队
G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
V
V2EX
博客园_首页
博客园 - 叶小钗
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
Docker
云风的 BLOG
云风的 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
Environment Variables in Node.js — What They Are, How dot...
Chinwuba · 2026-05-30 · via DEV Community

If you've been hardcoding API keys in your JavaScript files, you're one public GitHub push away from a bad day.

I'm Jeffrey — I run a web design agency called Velto and I'm currently 16 weeks deep into learning Express.js properly, starting from the JavaScript foundations most tutorials skip.

The problem environment variables solve

When your app runs, it needs configuration: what port to listen on, what database to connect to, what API keys to use. The naive approach is hardcoding these values directly in your code:

js
const PAYSTACK_KEY = "sk_live_xxxxxxxxxxx";
const DB_URL = "postgresql://jeffrey:password@localhost:5432/velto";

Enter fullscreen mode Exit fullscreen mode

This creates two immediate problems.
First, security. If this code ever touches a version control system — especially a public one — those secrets are exposed. GitHub has bots scraping repos for leaked credentials around the clock. This is not paranoia. It happens.
Second, portability. Your local database URL is different from your production database URL. Your dev Paystack key is different from your live one. If these values are in your code, you're changing code every time you deploy. That's a broken workflow.
Environment variables are the solution. Instead of values in your code, you store them in the environment where your code runs — your OS, your shell session, or your hosting platform. Your code reads them at runtime using process.env.

process.env

Node.js exposes all environment variables through a global object called process.env. No imports, always available.

js
console.log(process.env.HOME); // /home/jeffrey
console.log(process.env.PATH); // long string of directories
You can set variables in your terminal session:
bashexport MY_SECRET=hello123
node -e "console.log(process.env.MY_SECRET)" // hello123

Enter fullscreen mode Exit fullscreen mode

But that's tedious and they disappear when you close the terminal. For a real project, you use a .env file.

The .env file

A .env file is a plain text file at your project root. One key=value pair per line:

PORT=3000
DATABASE_URL=postgresql://jeffrey:password@localhost:5432/velto_db
JWT_SECRET=long_random_string_here
PAYSTACK_SECRET_KEY=sk_live_xxxxxx
NODE_ENV=development

Enter fullscreen mode Exit fullscreen mode

Important syntax rules:
No spaces around =
No quotes needed unless the value contains spaces
Comments with #
Never use commas or semicolons

This file never gets committed to version control. Add it to .gitignore before you write anything else.
dotenv — what it actually does

dotenv is a small npm package that reads your .env file and injects the values into process.env at runtime.

bash
npm install dotenv

Enter fullscreen mode Exit fullscreen mode

js
require('dotenv').config(); // This must be the first thing that runs

Enter fullscreen mode Exit fullscreen mode

Here's the internal logic of what .config() does:

Finds .env in the current working directory
Parses each line as KEY=VALUE
For each key, if process.env.KEY is not already set, it adds it
Returns { parsed: { ... } } with what it loaded

That third step is crucial. dotenv does not overwrite existing environment variables. This is intentional. On your hosting platform (Render, Railway, etc.), variables are set at the system level before your app starts. dotenv won't touch them. Your production config always wins.

The .env.example pattern

Since .env is gitignored, you need a way to communicate what variables are required. The standard solution: .env.example. A copy with values blanked out. This one you DO commit.

PORT=
NODE_ENV=
DATABASE_URL=
JWT_SECRET=
PAYSTACK_SECRET_KEY=
CLOUDINARY_CLOUD_NAME=
CLOUDINARY_API_KEY=
CLOUDINARY_API_SECRET=

Enter fullscreen mode Exit fullscreen mode

Anyone cloning the repo knows exactly what to fill in.
A config module — the pattern worth copying
Instead of sprinkling process.env.WHATEVER throughout your codebase, centralize it:

js
// config.js
require('dotenv').config();

const config = {
  port: process.env.PORT || 3000,
  nodeEnv: process.env.NODE_ENV || 'development',
  jwtSecret: process.env.JWT_SECRET,
  databaseUrl: process.env.DATABASE_URL,
  paystackKey: process.env.PAYSTACK_SECRET_KEY,
};

// Crash loud if required variables are missing
const required = ['jwtSecret', 'databaseUrl', 'paystackKey'];
required.forEach((key) => {
  if (!config[key]) {
    throw new Error(`Missing required env variable: ${key}`);
  }
});

module.exports = config;

Enter fullscreen mode Exit fullscreen mode

This pattern:
Gives you one place to see all your config
Validates required variables at startup instead of silently failing later
Makes it easy to set default values
Keeps process.env out of your business logic

The gotchas
Env vars are always strings. MAINTENANCE_MODE=true in your .env is the string "true", not a boolean. Convert explicitly:

js
const maintenanceMode = process.env.MAINTENANCE_MODE === 'true';

Enter fullscreen mode Exit fullscreen mode

dotenv reads once at startup. Change .env, nothing updates until you restart the server.
Don't log process.env. It dumps every secret to your terminal, and in production those logs can be stored and accessed elsewhere.
Always fallback on PORT. Platforms like Render assign PORT dynamically. process.env.PORT || 3000 ensures your app starts whether you're local or on a server.

The build
Here's a minimal Express app that demonstrates all of this:

env-demo/
  .env
  .env.example
  .gitignore
  server.js
  package.json

Enter fullscreen mode Exit fullscreen mode

.env:
PORT=3000
APP_NAME=Velto API
SECRET_MESSAGE=This came from your environment
MAINTENANCE_MODE=false

Enter fullscreen mode Exit fullscreen mode

server.js:
js
require('dotenv').config();

const express = require('express');
const app = express();

app.use(express.json());

const PORT = process.env.PORT || 3000;
const APP_NAME = process.env.APP_NAME || 'My API';
const SECRET_MESSAGE = process.env.SECRET_MESSAGE;
const MAINTENANCE_MODE = process.env.MAINTENANCE_MODE === 'true';

// Maintenance middleware — checks on every request
app.use((req, res, next) => {
  if (MAINTENANCE_MODE) {
    return res.status(503).json({
      status: 'error',
      message: 'Down for maintenance.',
    });
  }
  next();
});

app.get('/', (req, res) => {
  res.json({
    app: APP_NAME,
    environment: process.env.NODE_ENV || 'development',
    status: 'running',
  });
});

app.get('/secret', (req, res) => {
  if (!SECRET_MESSAGE) {
    return res.status(500).json({ error: 'SECRET_MESSAGE not configured.' });
  }
  res.json({ message: SECRET_MESSAGE });
});

app.get('/health', (req, res) => {
  res.json({ status: 'ok', uptime: process.uptime() });
});

app.listen(PORT, () => {
  console.log(`[${APP_NAME}] Listening on port ${PORT}`);
});

Enter fullscreen mode Exit fullscreen mode

Try: flip MAINTENANCE_MODE=true, restart, hit any route. All 503. Flip it back. Normal again. That's real feature-flag behavior with zero code changes.

Remove SECRET_MESSAGE from your .env, restart, hit /secret. The missing variable is handled gracefully. Your app doesn't crash silently or expose undefined as a response.

In production
On Render, you never upload a .env file. Go to your service → Environment tab → add variables there. Render injects them before your app starts. dotenv effectively becomes a no-op in production — variables are already in process.env. That's the design working correctly.

I'm documenting every step of this 16-week Express.js journey publicly. Next up: routing and middleware — the actual backbone of how Express works.