
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Loads environment variables from project's `./configs/` directory based on NODE_ENV.
Utility for loading environment variables from a project's configs/
directory.
The module first finds your application's root directory and then attempts to
load environment variables found in the configs/.env
file. Then, if a specific
NODE_ENV
exists in the environment at run time it additionally loads variables
from the configs/.env.${NODE_ENV}
file. Note: This module will not work if
installed globally [npm install loadenv -g
].
Suppose you have your project setup with the following configs:
configs/.env
A=1
B=2
configs/.env.test
B=3
C=4
If you launched your application without a NODE_ENV
variable set, and called
into the module like so:
require('loadenv')();
then the resulting process.env
would now contain the following:
process.env.A === 1
process.env.B === 2
If instead, you launched your application with NODE_ENV=test
then the
process.env
would include the following:
process.env.A === 1
process.env.B === 3
process.env.C === 4
The module uses debug to log the resulting environment after it has been loaded
from the configs/
files. By default it uses debug('loadenv')
but you can
override this by calling into the module with a custom name, like so:
// Pass an options object:
require('loadenv')({
debugName: 'myapp:env'
});
// Or just use a string if you only need the debug name
require('loadenv')('myapp:env') ;
If you were to do so then the module would use debug('myapp:env')
to log the
resulting output.
No matter how many times you include the module, the environment is only loaded once. So feel free to sprinkle loads wherever they might be needed to make your code as modular as possible.
If you want to contribute, make sure that all tests pass with 100% coverage before submitting a pull request. Here's how to run the tests:
npm test
MIT
FAQs
Loads environment variables from project's `./configs/` directory based on NODE_ENV.
The npm package loadenv receives a total of 295 weekly downloads. As such, loadenv popularity was classified as not popular.
We found that loadenv demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.