env-gen
v1.0.4
Published
Minimal node utility to scan all process.env references in a node project
Downloads
5
Maintainers
Readme
env-gen
.env
file generator by extracting all environment variables referenced in node js project through process.env.*
usage
$ cd <node app path to scan>
$ npx env-gen
Optional
Silent mode
Append --silent
to the main command npx env-gen
to simply scan and generate .env
file without prompting any inputs and displaying log traces.
$ npx env-gen --silent
Path exclusion
Place env-gen-config.js
under the same path from where you are executing npx env-gen
to exclude paths from scanning in the below format.
module.exports = {
exclude: ['/node_modules', '/coverage'] //default
};