config, convict, dotenv, and nconf are the primary solutions for managing environment variables and application settings in Node.js. dotenv is a lightweight utility that loads .env files into process.env, serving as the foundation for many other tools. config provides an opinionated, hierarchical system that loads JSON, JS, or YAML files based on the NODE_ENV, enforcing a strict directory structure. convict focuses on defining a strict schema with types and default values, validating configuration at startup to fail fast on errors. nconf offers a flexible, hierarchical key-value store that can merge data from command-line arguments, environment variables, and files, though it requires more manual setup than the others.
Managing configuration is one of the first architectural decisions you make in a Node.js project. Getting it wrong leads to hard-coded secrets, difficult deployments, and "it works on my machine" bugs. The ecosystem offers four distinct approaches: dotenv for simple loading, config for opinionated hierarchies, convict for strict validation, and nconf for flexible merging. Let's break down how they solve real-world problems.
The core difference lies in how these tools bring data into your application. Do you just want to fill process.env, or do you need a smart object that merges defaults with environment-specific overrides?
dotenv is the simplest. It reads a .env file and dumps everything into process.env. It doesn't merge or validate; it just sets strings.
// dotenv: Simple loading
require('dotenv').config();
// Accessing values
const dbHost = process.env.DB_HOST;
config uses a strict folder structure (config/) to automatically merge files. It loads default.json first, then overlays production.json if NODE_ENV is set to production.
// config: Hierarchical loading
// config/default.json: { "db": { "host": "localhost" } }
// config/production.json: { "db": { "host": "prod-db.example.com" } }
const config = require('config');
const dbHost = config.get('db.host'); // Automatically resolves to prod-db.example.com in production
nconf requires you to manually define the hierarchy. You tell it exactly which source wins (e.g., command line args > env vars > file).
// nconf: Manual hierarchy setup
const nconf = require('nconf');
nconf.argv().env().file({ file: 'config.json' });
const dbHost = nconf.get('db:host'); // Uses colon notation by default
convict doesn't load files itself by default; it defines a schema and loads values passed to it (often from dotenv or nconf). It focuses on the shape of the data rather than the source.
// convict: Schema-based loading
const convict = require('convict');
const config = convict({
db: {
host: { doc: 'Database host', format: String, default: 'localhost' }
}
});
// You must load values manually or via plugins
config.load({ db: { host: process.env.DB_HOST } });
const dbHost = config.get('db.host');
Nothing kills a deployment faster than discovering a missing API key halfway through startup. Some libraries let you define exactly what your config should look like before the app starts.
convict shines here. You define types, default values, and whether a field is required. If the config doesn't match, the app throws an error immediately.
// convict: Strict validation
const config = convict({
port: {
doc: 'Port to listen on',
format: 'port',
default: 3000,
env: 'PORT'
},
apiKey: {
doc: 'Secret API Key',
format: String,
default: null,
arg: 'api-key',
sensitive: true
}
});
config.validate({ allowed: 'strict' }); // Throws if apiKey is missing or port is invalid
config has no built-in schema validation. If you request a key that doesn't exist, it returns undefined. You have to write your own checks or rely on the file structure being correct.
// config: No built-in validation
const val = config.get('database.port');
if (val === undefined) {
throw new Error('Missing database port');
}
dotenv provides zero validation. It treats everything as a string. If you expect a number and get "banana", dotenv won't complain.
// dotenv: No validation
// .env: PORT=banana
require('dotenv').config();
// process.env.PORT is "banana". Your app might crash later when trying to bind to this port.
nconf also lacks built-in schema validation. It acts as a storage layer. You can retrieve values, but ensuring they are the right type is up to your code.
// nconf: No built-in validation
const port = nconf.get('port');
// You must manually check if 'port' is a number
How do you handle differences between local development, staging, and production? Do you rely on file names, environment variables, or command-line flags?
config relies entirely on file naming conventions. You create local.json for your machine, which is gitignored, and production.json for the server. It handles the switching automatically based on NODE_ENV.
# config: File-based override
# Set NODE_ENV=production
# Automatically loads config/production.json overriding config/default.json
node server.js
nconf lets you mix sources dynamically. You can pass a flag via the command line to override a file setting, which is great for CLI tools or temporary debug modes.
// nconf: Multi-source override
// Run: node server.js --port 9000
// The --port arg overrides the value in config.json or process.env
nconf.argv().env().file({ file: 'config.json' });
const port = nconf.get('port'); // Returns 9000 from CLI arg
dotenv handles overrides by letting you load multiple files or relying on the shell. Usually, developers use dotenv-cli to load .env.production instead of .env.
# dotenv: Shell-based override
# Manually specify which file to load
dotenv -e .env.production -- node server.js
convict handles overrides by mapping specific environment variables or command-line arguments directly to schema fields. You define the mapping in the schema itself.
// convict: Schema-mapped override
const conf = convict({
env: {
doc: 'Environment',
format: String,
default: 'development',
env: 'NODE_ENV' // Automatically maps NODE_ENV to this field
}
});
Your configuration might be simple key-value pairs, or it might be deeply nested JSON objects. The tools handle these differently.
config supports JSON, JS, CoffeeScript, YAML, and TOML out of the box (via optional dependencies). It preserves nested structures naturally.
// config: Nested structure support
// config/default.yaml
// database:
// host: localhost
// credentials:
// user: admin
const dbUser = config.get('database.credentials.user');
dotenv only supports flat key-value pairs in the .env file. If you need nested data, you have to parse JSON strings manually.
# dotenv: Flat structure only
# .env
DB_HOST=localhost
# For nested data, you must stringify it
DB_CREDENTIALS='{"user":"admin","pass":"123"}'
// dotenv: Manual parsing required
const creds = JSON.parse(process.env.DB_CREDENTIALS);
nconf stores data as a hierarchical key-value store but accesses it via colon-separated strings by default. It can read JSON files easily.
// nconf: Colon notation for nested keys
// config.json: { "database": { "host": "localhost" } }
nconf.file({ file: 'config.json' });
const host = nconf.get('database:host');
convict works best with nested objects defined in the schema. It accesses them using dot notation, similar to standard JavaScript objects.
// convict: Dot notation for nested keys
const config = convict({
database: {
host: { format: String, default: 'localhost' }
}
});
const host = config.get('database.host');
Before choosing, it is critical to note the maintenance status of these libraries.
nconf: While still widely used, nconf has seen very infrequent updates in recent years and has open issues regarding modern Node.js versions. It is not officially deprecated on npm, but its development pace is slow. For new projects requiring complex merging, consider if config or a custom solution with convict might be more future-proof.config, convict, and dotenv are actively maintained and widely adopted in the industry.You are spinning up a microservice and just need to swap database URLs between your laptop and the cloud.
dotenvrequire('dotenv').config();
const dbUrl = process.env.DATABASE_URL;
You have a large app with default, staging, production, and local configs. You want to ensure no one accidentally commits secrets to production.json.
configlocal-*.json pattern is gitignored by convention, keeping secrets safe while allowing easy overrides.// config/production.json (committed)
// config/local-production.json (gitignored, overrides production)
const dbPass = config.get('db.password');
Your service will crash if a specific feature flag is missing or if a port is out of range. You need to guarantee config integrity at boot.
convict (often paired with dotenv)validate({ allowed: 'strict' }) call ensures the app refuses to start if the environment is misconfigured.config.validate({ allowed: 'strict' });
console.log('Config is valid, starting server...');
You are building a command-line tool where users can pass --port or --verbose to override settings in a config file.
nconfargv (command line arguments) taking precedence over files is exactly what CLI tools need.nconf.argv().env().file({ file: 'settings.json' });
const isVerbose = nconf.get('verbose');
| Feature | dotenv | config | convict | nconf |
|---|---|---|---|---|
| Primary Goal | Load .env to process.env | Hierarchical file merging | Schema validation | Flexible source merging |
| Validation | ❌ None | ❌ None | ✅ Strict (Types, Required) | ❌ None |
| Hierarchy | ❌ Flat (Manual merge) | ✅ Automatic (File-based) | ⚠️ Manual (Schema-based) | ✅ Manual (Code-based) |
| Formats | Key-Value | JSON, JS, YAML, TOML | Any (via loader) | JSON, Env, Args |
| Best For | Simple apps, Dev setup | Large apps, Team standards | Critical services, Safety | CLI tools, Legacy systems |
dotenv is the universal adapter 🧱. It's almost always present, even if you use other tools on top of it. Use it for simple projects or as the base layer for loading secrets.
config is the opinionated organizer 🗄️. It forces your team to follow a structure that scales well as the project grows. It removes the need to write merge logic but demands you follow its file naming rules.
convict is the safety inspector 🛡️. It doesn't care where the data comes from, only that it is correct. Pair it with dotenv or config to add a critical layer of reliability to your startup sequence.
nconf is the flexible integrator 🔌. It handles complex merging scenarios (CLI > Env > File) better than the others but requires more code to set up. Use it for tools or specific cases where source priority is dynamic.
Final Thought: For most modern web applications, a combination of dotenv (for loading secrets) and convict (for validation) offers the best balance of simplicity and safety. If your team struggles with managing multiple environment files, switch to config to enforce order.
Choose dotenv if you need a zero-dependency way to load local .env files into process.env during development or in simple containerized setups. It is the standard baseline for most projects but lacks validation or hierarchical merging logic on its own. Use it when your team prefers managing secrets directly in the environment or via orchestration tools like Kubernetes ConfigMaps.
Choose config if you want a 'batteries-included' solution that automatically handles hierarchical overrides (e.g., default.json vs production.json) without writing custom merge logic. It is ideal for teams that prefer convention over configuration and want to separate sensitive data from code using the local-*.json pattern. Avoid it if you dislike rigid directory structures or need to support non-JSON formats like YAML without extra plugins.
Choose convict if type safety and strict validation are your top priorities, ensuring your app crashes immediately if a required config is missing or malformed. It is perfect for complex applications where configuration shapes need to be documented and enforced via a schema definition. Use it alongside dotenv or config to add a robust validation layer before the application starts processing requests.
Choose nconf if you need maximum flexibility to merge configuration sources in a specific order, such as prioritizing command-line arguments over environment variables, which then override file settings. It is suitable for CLI tools or legacy systems where configuration sources vary wildly between deployments. Be aware that it requires more boilerplate code to set up the hierarchy compared to config or convict.
Dotenv is a zero-dependency module that loads environment variables from a .env file into process.env. Storing configuration in the environment separate from code is based on The Twelve-Factor App methodology.
Install it.
npm install dotenv --save
Create a .env file in the root of your project:
# .env
HELLO="Dotenv"
OPENAI_API_KEY="your-api-key-goes-here"
As early as possible in your application, import and configure dotenv:
// index.js
require('dotenv').config()
// or import 'dotenv/config' // for esm
console.log(`Hello ${process.env.HELLO}`)
$ node index.js
◇ injected env (2) from .env
Hello Dotenv
That's it. process.env now has the keys and values you defined in your .env file.
Install this repo as an agent skill package:
npx skills add motdotla/dotenv
# ask Claude or Codex to do things like:
set up dotenv
upgrade dotenv to dotenvx
Import with ES6:
import 'dotenv/config'
ES6 import if you need to set config options:
import dotenv from 'dotenv'
dotenv.config({ path: '/custom/path/to/.env' })
bun add dotenv
yarn add dotenv
pnpm add dotenv
For monorepos with a structure like apps/backend/app.js, put it the .env file in the root of the folder where your app.js process runs.
# app/backend/.env
S3_BUCKET="YOURS3BUCKET"
SECRET_KEY="YOURSECRETKEYGOESHERE"
If you need multiline variables, for example private keys, those are now supported (>= v15.0.0) with line breaks:
PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY-----
...
Kh9NV...
...
-----END RSA PRIVATE KEY-----"
Alternatively, you can double quote strings and use the \n character:
PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY-----\nKh9NV...\n-----END RSA PRIVATE KEY-----\n"
Comments may be added to your file on their own line or inline:
# This is a comment
SECRET_KEY=YOURSECRETKEYGOESHERE # comment
SECRET_HASH="something-with-a-#-hash"
Comments begin where a # exists, so if your value contains a # please wrap it in quotes. This is a breaking change from >= v15.0.0 and on.
The engine which parses the contents of your file containing environment variables is available to use. It accepts a String or Buffer and will return an Object with the parsed keys and values.
const dotenv = require('dotenv')
const buf = Buffer.from('BASIC=basic')
const config = dotenv.parse(buf) // will return an object
console.log(typeof config, config) // object { BASIC : 'basic' }
Note: Consider using
dotenvxinstead of preloading. I am now doing (and recommending) so.It serves the same purpose (you do not need to require and load dotenv), adds better debugging, and works with ANY language, framework, or platform. – motdotla
You can use the --require (-r) command line option to preload dotenv. By doing this, you do not need to require and load dotenv in your application code.
$ node -r dotenv/config your_script.js
The configuration options below are supported as command line arguments in the format dotenv_config_<option>=value
$ node -r dotenv/config your_script.js dotenv_config_path=/custom/path/to/.env dotenv_config_debug=true
Additionally, you can use environment variables to set configuration options. Command line arguments will precede these.
$ DOTENV_CONFIG_<OPTION>=value node -r dotenv/config your_script.js
$ DOTENV_CONFIG_ENCODING=latin1 DOTENV_CONFIG_DEBUG=true node -r dotenv/config your_script.js dotenv_config_path=/custom/path/to/.env
Use dotenvx for variable expansion.
Reference and expand variables already on your machine for use in your .env file.
# .env
USERNAME="username"
DATABASE_URL="postgres://${USERNAME}@localhost/my_database"
// index.js
console.log('DATABASE_URL', process.env.DATABASE_URL)
$ dotenvx run --debug -- node index.js
⟐ injected env (2) from .env · dotenvx@1.59.1
DATABASE_URL postgres://username@localhost/my_database
Use dotenvx for command substitution.
Add the output of a command to one of your variables in your .env file.
# .env
DATABASE_URL="postgres://$(whoami)@localhost/my_database"
// index.js
console.log('DATABASE_URL', process.env.DATABASE_URL)
$ dotenvx run --debug -- node index.js
⟐ injected env (1) from .env · dotenvx@1.59.1
DATABASE_URL postgres://yourusername@localhost/my_database
Use dotenvx for encryption.
Add encryption to your .env files with a single command.
$ dotenvx set HELLO Production -f .env.production
$ echo "console.log('Hello ' + process.env.HELLO)" > index.js
$ DOTENV_PRIVATE_KEY_PRODUCTION="<.env.production private key>" dotenvx run -- node index.js
⟐ injected env (2) from .env.production · dotenvx@1.59.1
Hello Production
Use dotenvx to manage multiple environments.
Run any environment locally. Create a .env.ENVIRONMENT file and use -f to load it. It's straightforward, yet flexible.
$ echo "HELLO=production" > .env.production
$ echo "console.log('Hello ' + process.env.HELLO)" > index.js
$ dotenvx run -f=.env.production -- node index.js
Hello production
> ^^
or with multiple .env files
$ echo "HELLO=local" > .env.local
$ echo "HELLO=World" > .env
$ echo "console.log('Hello ' + process.env.HELLO)" > index.js
$ dotenvx run -f=.env.local -f=.env -- node index.js
Hello local
Use dotenvx for production deploys.
Create a .env.production file.
$ echo "HELLO=production" > .env.production
Encrypt it.
$ dotenvx encrypt -f .env.production
Set DOTENV_PRIVATE_KEY_PRODUCTION (found in .env.keys) on your server.
$ heroku config:set DOTENV_PRIVATE_KEY_PRODUCTION=value
Commit your .env.production file to code and deploy.
$ git add .env.production
$ git commit -m "encrypted .env.production"
$ git push heroku main
Dotenvx will decrypt and inject the secrets at runtime using dotenvx run -- node index.js.
Use dotenvx to sync your .env files.
Encrypt them with dotenvx encrypt -f .env and safely include them in source control. Your secrets are securely synced with your git.
This still subscribes to the twelve-factor app rules by generating a decryption key separate from code.
We recommend creating one .env file per environment. Use .env for local/development, .env.production for production and so on. This still follows the twelve factor principles as each is attributed individually to its own environment. Avoid custom set ups that work in inheritance somehow (.env.production inherits values from .env for example). It is better to duplicate values if necessary across each .env.environment file.
In a twelve-factor app, env vars are granular controls, each fully orthogonal to other env vars. They are never grouped together as “environments”, but instead are independently managed for each deploy. This is a model that scales up smoothly as the app naturally expands into more deploys over its lifetime.
Additionally, we recommend using dotenvx to encrypt and manage these.
Simply..
// index.mjs (ESM)
import 'dotenv/config' // see https://github.com/motdotla/dotenv#how-do-i-use-dotenv-with-import
import express from 'express'
A little background..
When you run a module containing an
importdeclaration, the modules it imports are loaded first, then each module body is executed in a depth-first traversal of the dependency graph, avoiding cycles by skipping anything already executed.
What does this mean in plain language? It means you would think the following would work but it won't.
errorReporter.mjs:
class Client {
constructor (apiKey) {
console.log('apiKey', apiKey)
this.apiKey = apiKey
}
}
export default new Client(process.env.API_KEY)
index.mjs:
// Note: this is INCORRECT and will not work
import * as dotenv from 'dotenv'
dotenv.config()
import errorReporter from './errorReporter.mjs' // process.env.API_KEY will be blank!
process.env.API_KEY will be blank.
Instead, index.mjs should be written as..
import 'dotenv/config'
import errorReporter from './errorReporter.mjs'
Does that make sense? It's a bit unintuitive, but it is how importing of ES6 modules work. Here is a working example of this pitfall.
There are two alternatives to this approach:
dotenvx run -- node index.js (Note: you do not need to import dotenv with this approach)config first as outlined in this comment on #133Yes! dotenv.config() returns an object representing the parsed .env file. This gives you everything you need to continue setting values on process.env. For example:
const dotenv = require('dotenv')
const variableExpansion = require('dotenv-expand')
const myEnv = dotenv.config()
variableExpansion(myEnv)
The parsing engine currently supports the following rules:
BASIC=basic becomes {BASIC: 'basic'}# are treated as comments# marks the beginning of a comment (unless when the value is wrapped in quotes)EMPTY= becomes {EMPTY: ''})JSON={"foo": "bar"} becomes {JSON:"{\"foo\": \"bar\"}")trim) (FOO= some value becomes {FOO: 'some value'})SINGLE_QUOTE='quoted' becomes {SINGLE_QUOTE: "quoted"})FOO=" some value " becomes {FOO: ' some value '})MULTILINE="new\nline" becomes{MULTILINE: 'new
line'}
BACKTICK_KEY=`This has 'single' and "double" quotes inside of it.`)Use dotenvx to unlock syncing encrypted .env files over git.
When using import 'dotenv/config', you can't pass options directly. Here are a few ways to handle it.
Option 1: Import and call config() yourself (Recommended)
// index.mjs
import dotenv from 'dotenv'
dotenv.config({
path: '/custom/path/to/.env',
debug: true
})
// Now import everything else
import express from 'express'
Because ES6 imports are hoisted, put the dotenv import and config() call at the very top, before any other imports that rely on process.env.
Option 2: Use environment variables
DOTENV_CONFIG_DEBUG=true DOTENV_CONFIG_PATH=/custom/path/to/.env node index.mjs
Then in your code you can keep the shorthand:
import 'dotenv/config'
Option 3: A tiny wrapper file
Create load-env.mjs:
import dotenv from 'dotenv'
dotenv.config({ path: '/custom/path/to/.env', debug: true })
Then in your main file:
import './load-env.mjs'
import express from 'express'
Not the most elegant, but it works reliably when hoisting gets in the way.
Remove it, remove git history and then install the git pre-commit hook to prevent this from ever happening again.
npm i -g @dotenvx/dotenvx
dotenvx precommit --install
By default, we will never modify any environment variables that have already been set. In particular, if there is a variable in your .env file which collides with one that already exists in your environment, then that variable will be skipped.
If instead, you want to override process.env use the override option.
require('dotenv').config({ override: true })
Use the docker prebuild hook.
# Dockerfile
...
RUN curl -fsS https://dotenvx.sh/ | sh
...
RUN dotenvx prebuild
CMD ["dotenvx", "run", "--", "node", "index.js"]
Your React code is run in Webpack, where the fs module or even the process global itself are not accessible out-of-the-box. process.env can only be injected through Webpack configuration.
If you are using react-scripts, which is distributed through create-react-app, it has dotenv built in but with a quirk. Preface your environment variables with REACT_APP_. See this stack overflow for more details.
If you are using other frameworks (e.g. Next.js, Gatsby...), you need to consult their documentation for how to inject environment variables into the client.
Most likely your .env file is not in the correct place. See this stack overflow.
Turn on debug mode and try again..
require('dotenv').config({ debug: true })
You will receive a helpful error outputted to your console.
You are using dotenv on the front-end and have not included a polyfill. Webpack < 5 used to include these for you. Do the following:
npm install node-polyfill-webpack-plugin
Configure your webpack.config.js to something like the following.
require('dotenv').config()
const path = require('path');
const webpack = require('webpack')
const NodePolyfillPlugin = require('node-polyfill-webpack-plugin')
module.exports = {
mode: 'development',
entry: './src/index.ts',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist'),
},
plugins: [
new NodePolyfillPlugin(),
new webpack.DefinePlugin({
'process.env': {
HELLO: JSON.stringify(process.env.HELLO)
}
}),
]
};
Alternatively, just use dotenv-webpack which does this and more behind the scenes for you.
Dotenv exposes four functions:
configparsepopulateconfig will read your .env file, parse the contents, assign it to
process.env,
and return an Object with a parsed key containing the loaded content or an error key if it failed.
const result = dotenv.config()
if (result.error) {
throw result.error
}
console.log(result.parsed)
You can additionally, pass options to config.
Default: path.resolve(process.cwd(), '.env')
Specify a custom path if your file containing environment variables is located elsewhere.
require('dotenv').config({ path: '/custom/path/to/.env' })
By default, config will look for a file called .env in the current working directory.
Pass in multiple files as an array, and they will be parsed in order and combined with process.env (or option.processEnv, if set). The first value set for a variable will win, unless the options.override flag is set, in which case the last value set will win. If a value already exists in process.env and the options.override flag is NOT set, no changes will be made to that value.
require('dotenv').config({ path: ['.env.local', '.env'] })
Default: false
Suppress runtime logging message.
// index.js
require('dotenv').config({ quiet: false }) // change to true to suppress
console.log(`Hello ${process.env.HELLO}`)
# .env
HELLO=World
$ node index.js
Hello World
Default: utf8
Specify the encoding of your file containing environment variables.
require('dotenv').config({ encoding: 'latin1' })
Default: false
Turn on logging to help debug why certain keys or values are not being set as you expect.
require('dotenv').config({ debug: process.env.DEBUG })
Default: false
Override any environment variables that have already been set on your machine with values from your .env file(s). If multiple files have been provided in option.path the override will also be used as each file is combined with the next. Without override being set, the first value wins. With override set the last value wins.
require('dotenv').config({ override: true })
Default: process.env
Specify an object to write your environment variables to. Defaults to process.env environment variables.
const myObject = {}
require('dotenv').config({ processEnv: myObject })
console.log(myObject) // values from .env
console.log(process.env) // this was not changed or written to
The engine which parses the contents of your file containing environment variables is available to use. It accepts a String or Buffer and will return an Object with the parsed keys and values.
const dotenv = require('dotenv')
const buf = Buffer.from('BASIC=basic')
const config = dotenv.parse(buf) // will return an object
console.log(typeof config, config) // object { BASIC : 'basic' }
Default: false
Turn on logging to help debug why certain keys or values are not being set as you expect.
const dotenv = require('dotenv')
const buf = Buffer.from('hello world')
const opt = { debug: true }
const config = dotenv.parse(buf, opt)
// expect a debug message because the buffer is not in KEY=VAL form
The engine which populates the contents of your .env file to process.env is available for use. It accepts a target, a source, and options. This is useful for power users who want to supply their own objects.
For example, customizing the source:
const dotenv = require('dotenv')
const parsed = { HELLO: 'world' }
dotenv.populate(process.env, parsed)
console.log(process.env.HELLO) // world
For example, customizing the source AND target:
const dotenv = require('dotenv')
const parsed = { HELLO: 'universe' }
const target = { HELLO: 'world' } // empty object
dotenv.populate(target, parsed, { override: true, debug: true })
console.log(target) // { HELLO: 'universe' }
Default: false
Turn on logging to help debug why certain keys or values are not being populated as you expect.
Default: false
Override any environment variables that have already been set.
See CHANGELOG.md
These npm modules depend on it.
Projects that expand it often use the keyword "dotenv" on npm.