
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
By requiring dot-env into your source, your current working directory is scanned for a .env.json
file to merge into your process.env
runtime variables.
Environment variables are magical. You should store your sensitive credentials in there (perhaps as part of your heroku setup, or your upstart job).
That works well in production, but kindof sucks running locally... until now!
Now I don't have to clutter my .zshrc
file with ENV statements for different projects (that probably overlap with keys).
{
"MONGO_URL": "mongodb://ian:sekret@widmore.mongohq.com:27017/dev_local",
"REDIS_KEY": "1234"
}
// app.js
require('dot-env')
console.log(process.env)
Let's run my application (and override the redis key just for a quick test).
NEW_KEY=value node app.js
This application logs to the console this:
{
MONGO_URL: "mongodb://ian:sekret@widmore.mongohq.com:27017/dev_local",
NEW_KEY: "value",
REDIS_KEY: "1234"
}
Because dot-env should only be run during your bootstrap phase of your application, we're not blocking anything important.
If you send a pull request, perhaps.
The keys naturally in your process.env are not overridden. Variables provided by the .env.json
file only add to your natural process.env
NO! This is meant to make your development environment closer to your prod environment, which means sticking potentially sensitive keys in your env file.
If you want, commit a .env-sample.json just to show developers where they should fill in the blanks of your redacted keys.
MIT
FAQs
An environment variable loader
We found that dot-env demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.