Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
dotenv-haphap
Advanced tools
Inspired by dotenv, but allows loading multiple dotenv files.
Instead of a path for a single dotenv file, you can call config with a coma separated list of paths.
npm install dotenv-haphap
As early as possible in your application, require and configure dotenv-haphap.
require('dotenv-haphap').config('.env', 'confidential.env')
It will never modify any environment variables that have already been set. Variables defined in later .env files will overwrite values in previous ones.
For example, if you have HAPHAP=11
in your .env
file, and HAPHAP=14
in confidential.env
, then
process.env.HAPHAP
will be 14 when using the require from above.
$ node -r dotenv-haphap/config your_script.js dotenv_paths=.env,confidential.env
or
$ DOTENV_PATHS=.env,confidnetial.env node -r dotenv-haphap/config your_script.js
.env
file?You should not commit them if you have sensitive information in it (such as database passwords or API keys).
We found it easier though to commit parts of the .env file which contain local development specific values (like connection strings to local docker images), but not deploying them to production.
.env
files?Generally you should not have a different .env file for each environment (like one for staging and for prod), but for local development it might be helpful to have a .env file for test execution and one for starting the app locally.
Also, if there are parts of the .env file you do not wish to commit, you could separate them into a confidential.env file, which you put in gitignore and let each developer set it up locally.
FAQs
dotenv with multiple dotenv file support
The npm package dotenv-haphap receives a total of 96 weekly downloads. As such, dotenv-haphap popularity was classified as not popular.
We found that dotenv-haphap 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.