Skip to content

Instantly share code, notes, and snippets.

@coderfi
Created May 2, 2019 17:03
Show Gist options
  • Save coderfi/59ccd150abf84910dc965f2a03759fa2 to your computer and use it in GitHub Desktop.
Save coderfi/59ccd150abf84910dc965f2a03759fa2 to your computer and use it in GitHub Desktop.
dotenv npm command line node
npm install dotenv
echo "FOO=bar" > .env
node -r dotenv/config -e 'console.log(process.env.FOO)'
bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment