process-env-checker
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

process-env-checker

Check if all requested environment variables are present.

Usage

  1. Create file env.d.ts with (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
  }
}
  1. Install this package locally in devDependencies like yarn add process-env-checker

  2. Run 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

Package Sidebar

Install

npm i process-env-checker

Weekly Downloads

0

Version

1.0.3

License

ISC

Unpacked Size

10.1 kB

Total Files

8

Last publish

Collaborators

  • homoky