May 6 · 5 min read · Ever found yourself pasting an API key directly into your code? It's a common mistake, often followed by a quick panic commit to remove it. Hardcoding sensitive information like database credentials,
Join discussion
Mar 3 · 5 min read · Secrets Management for Developers: .env, Vaults, and Best Practices Every application has secrets — API keys, database passwords, signing keys, OAuth tokens. How you manage them determines whether they end up in a git commit, a Slack message, or a br...
Join discussionJan 10 · 3 min read · ___________________________________________ What’s Today we’ll build a data courier system. The goal is to connect our application code to a database so we can seamlessly send and retrieve data using the Drizzle ORM. _________________________________...
Join discussion
Dec 12, 2025 · 5 min read · Executive Summary Problem: Environment files containing secrets get committed to repositories, shared insecurely, and become stale Solution: Store secrets in AWS Secrets Manager and generate .env files programmatically on demand Result: Zero secrets...
Join discussionNov 12, 2025 · 5 min read · 📌 Pendahuluan Dalam pengembangan aplikasi modern — baik di Next.js, Hono, Bun, atau Node.js murni — kita sering menggunakan variabel environment (process.env) untuk menyimpan konfigurasi penting seperti: API key URL database Secret token Konfigu...
Join discussion
Oct 6, 2025 · 8 min read · Let’s build a Node.js app and deploy it on Render for free. By the end, it will be live and accessible online. Prerequisites Before we start, make sure you have the following ready: VS Code (I’ll be using this for the demo) Node installed Git inst...
Join discussion
Sep 25, 2025 · 3 min read · For Node.js developers, the workflow is muscle memory: need environment variables? Install dotenv, call config(), and the variables from your .env file are ready to go. However, when you bring this habit to Bun, the newer, blazing-fast JavaScript run...
Join discussion
Sep 12, 2025 · 3 min read · If you’ve ever worked with Node.js, dotenv, and ES Modules (import syntax), you may have faced this frustrating problem: 👉 Even after adding dotenv.config() at the very top of your code, your .env variables still show up as undefined in your config ...
Join discussionAug 23, 2025 · 5 min read · As Node.js applications grow in complexity, managing environment variables becomes increasingly important. Most developers are familiar with the traditional approach of accessing process.env.VARIABLE_NAME throughout their codebase, but this pattern h...
Join discussion