Converts current env to js/json. Supports reading from .env
files.
All commands are available via env2js --help
```
$ env2js --help
Converts your env to js or json file
USAGE: env-to-json [OPTIONS]
FLAGS: -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-c, --config
You can use it for making env variables available in runtime of your react app.
```
$ REACTAPPFOO=bar env2js -g env -p REACTAPP -t js > env.js ```
Will result in following file:
js
window.env = {"FOO":"bar"}