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.
@dotenvx/dotenvx
Advanced tools
a better dotenv–from the creator of dotenv
.
brew install dotenvx/brew/dotenvx
$ echo "HELLO=World" > .env && echo "console.log('Hello ' + process.env.HELLO)" > index.js
$ node index.js
Hello undefined
$ dotenv run -- node index.js
Hello World
> :-D
More examples
$ echo 'import os;print("Hello " + os.getenv("HELLO", ""))' > index.py
$ dotenv run -- python3 index.py
Hello World
$ echo '<?php echo "Hello {$_SERVER["HELLO"]}\n";' > index.php
$ dotenv run -- php index.php
Hello World
$ echo 'puts "Hello #{ENV["HELLO"]}"' > index.rb
$ dotenv run -- ruby index.rb
Hello World
$ echo 'fn main() {let hello = std::env::var("HELLO").unwrap_or("".to_string());println!("Hello {hello}");}' > src/main.rs
$ dotenv run -- cargo run
Hello World
$ dotenv run -- next dev
$ dotenv run -- npm start
$ dotenv run -- bin/rails s
$ dotenv run -- php artisan serve
# run as a command-line tool
docker run -it --rm -v $(pwd):/app dotenv/dotenv run -- node index.js
# include in a Dockerfile
# example coming soon
examples coming soon
examples coming soon
# alternatively use npx
$ npx @dotenv/dotenv run -- node index.js
$ npx @dotenv/dotenv run -- next dev
$ npx @dotenv/dotenv run -- npm start
# use as a git submodule
$ git dotenv run -- node index.js
$ git dotenv run -- next dev
$ git dotenv run -- npm start
Pass the --env-file
flag (shorthand -f
) to run any environment from a .env.environment
file.
$ dotenv run --env-file=.env.production -- node index.js
[dotenv][INFO] Injecting 12 production environment variables into your application process
Combine multiple .env
files if you like.
$ dotenv run --env-file=.env.local --env-file=.env -- node index.js
[dotenv][INFO] Injecting 12 local, 1 development environment variables into your application process
WIP
Begin by creating a simple 'hello world' program.
// index.js
console.log(`Hello ${process.env.HELLO}`)
Run it.
$ node index.js
Hello undefined
Run it with dotenv
.
$ dotenv run -- node index.js
[dotenv@x.x.x][WARN] ENOENT: no such file or directory, open '/../../.env'
Hello undefined
It warns you when there is no .env
file (pass the --quiet
flag to suppress these warnings).
Create the .env
file.
# env
JELLO="World"
Run it again.
$ dotenv run -- node index.js
[dotenv@x.x.x][INFO] Injecting 0 environment variables into your application process
Hello undefined
Hrm, still undefined. Pass the --debug
flag to debug the issue. I'll give you a hint: 🍮
$ dotenv run --debug -- node index.js
[dotenv@x.x.x][VERBOSE] Loading env from /../../.env
[dotenv@x.x.x][DEBUG] Reading env from /../../.env
[dotenv@x.x.x][DEBUG] Parsing env from /../../.env
[dotenv@x.x.x][DEBUG] {"JELLO":"World"}
# Oops, HELLO not JELLO ^^
Fix your .env
file.
# .env
HELLO="World"
One last time. Le tired.
$ dotenv run -- node index.js
[dotenv@x.x.x][INFO] Injecting 0 environment variables into your application process
Hello undefined
Installing with brew
is most straight forward:
brew install dotenvx/brew/dotenvx
brew
, installing globally using npm
is easiest:npm install @dotenvx/dotenvx --global
npx
:npx @dotenvx/dotenvx help
# download it to `./dotenvx`
curl -Lo ./dotenvx --compressed -f --proto '=https' https://github.com/dotenvx/dotenvx/releases/latest/download/dotenvx-$(uname)-$(uname -m).tar.gz
# install it to `/usr/local/bin/dotenvx`
sudo install -m 755 dotenvx /usr/local/bin
# check it works
dotenvx --help
If you have questions or feedback:
FAQs
a better dotenv–from the creator of `dotenv`
The npm package @dotenvx/dotenvx receives a total of 182,320 weekly downloads. As such, @dotenvx/dotenvx popularity was classified as popular.
We found that @dotenvx/dotenvx demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
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.