1.0.3 • Published 3 years ago
process-env-checker v1.0.3
process-env-checker
Check if all requested environment variables are present.
Usage
- Create file
env.d.tswith (you can call it like you want) with this template:
/// <reference types="node" />
declare namespace NodeJS {
interface ProcessEnv {
readonly STRIPE_API_KEY: string;
// ADD ANOTHER ENVs
}
}Install this package locally in
devDependencieslikeyarn add process-env-checkerRun manually or add to package.json script. Do not forget to provide path to definition file:
yarn process-env-checker check ./env.d.ts
Note: Do not forget to pass envs as part of script, otherwise it fails. Example: MY_ENV_TEST=hello yarn process-env-checker check ./env.d.ts