0.1.13 • Published 5 months ago

@noahtigner/validate-env-vars v0.1.13

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

license latest last commit npm downloads \ Coverage Code Quality CodeQL

Installation

Using npm:

npm install @noahtigner/validate-env-vars --save-dev

Usage

Check your .env file against every required variable in your template file:

validate-env-vars --template .env.template

Check your .env file against a list of required variables:

validate-env-vars --list VAR1,VAR2,VAR3

Check a specific .env file:

validate-env-vars --env .env.local --template .env.template

Arguments

ArgumentDescription
-t <file>--template <file>Path to template file to check against. Optional variables can be specified with # optional suffix.Either --template or --list must be specified.
-l <vars>--list <vars>Comma-separated list of required variables to check for.Either --template or --list must be specified.
-e <file>--env <file>Path to .env file to check. Defaults to .env in current directory.