Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
node-env-file
Advanced tools
Parse and load environment files (containing ENV variable exports) into Node.js environment, i.e. `process.env`.
Parse and load environment files (containing ENV variable exports) into Node.js environment, i.e. process.env
.
.env
# some env variables
FOO=foo1
BAR=bar1
BAZ=1
QUX=
.env2
# some env variables using exports syntax
exports FOO=foo2
exports BAR=bar2
exports BAZ=2
exports QUX=
index.js
var assert = require('assert');
var env = require('node-env-file');
process.env.FOO = "defaultfoo";
// Load any undefined ENV variables form a specified file.
env(__dirname + '/.env');
assert.equal(process.env.FOO, "defaultfoo");
assert.equal(process.env.BAR, "bar1");
assert.equal(process.env.BAZ, "1");
assert.equal(process.env.QUX, "");
// Load another ENV file - and overwrite any defined ENV variables.
env(__dirname + '/.env2', {overwrite: true});
assert.equal(process.env.FOO, "foo2");
assert.equal(process.env.BAR, "bar2");
assert.equal(process.env.BAZ, "2");
assert.equal(process.env.QUX, "");
(filepath)
env('./path/to/.env');
(filepath, options)
env('./path/to/.env', {verbose: true, overwrite: true});
$ npm install node-env-file
Local tests:
$ make test
Local examples:
$ make example
Makefile
define LOAD_ENV
ENV_FILE=$${2:-'.env'}
echo "LOAD: $$ENV_FILE"
if [ -f $$ENV_FILE ]; then
while read line || [ -n "$$line" ]; do
if [[ "$$line" == *=* ]] && [[ "$$line" != #* ]]; then
# TODO: handle exports case
echo " export $$line"
eval "export $$line"
fi
done < "$$ENV_FILE"
fi
endef
export LOAD_ENV
env:
eval "$$LOAD_ENV"
...
Released under the MIT license.
Copyright (c) Jonas Grimfelt
FAQs
Parse and load environment files (containing ENV variable exports) into Node.js environment, i.e. `process.env`.
The npm package node-env-file receives a total of 7,156 weekly downloads. As such, node-env-file popularity was classified as popular.
We found that node-env-file 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.