|
|
5 years ago | |
|---|---|---|
| .. | ||
| lib | 5 years ago | |
| .npmignore | 5 years ago | |
| CONTRIBUTING.md | 5 years ago | |
| LICENSE | 5 years ago | |
| README.md | 5 years ago | |
| dotenv-expand.png | 5 years ago | |
| index.d.ts | 5 years ago | |
| package.json | 5 years ago | |
If you found this library useful, donate some CPU cycles to this project by clicking above. Thank you! 😇

Dotenv-expand adds variable expansion on top of dotenv. If you find yourself needing to expand environment variables already existing on your machine, then dotenv-expand is your tool.
npm install dotenv --save
npm install dotenv-expand --save
As early as possible in your application, require dotenv and dotenv-expand, and wrap dotenv-expand around dotenv.
var dotenv = require('dotenv')
var dotenvExpand = require('dotenv-expand')
var myEnv = dotenv.config()
dotenvExpand(myEnv)
See test/.env for examples of variable expansion in your .env
file.