require-env-variable

v2.0.1
Require specific environment variables. If they don't exist, the application exits
dotenv environment variables process typescript

Install

pnpm add require-env-variable

or

yarn add require-env-variable

or

npm install require-env-variable

Usage

import { requireEnv } from "require-env-variable";

const { NODE_ENV, SSLKEY, SSLCERT, PORT } = requireEnv(
  "NODE_ENV",
  "SSLKEY",
  "SSLCERT",
  "PORT"
);

Returns the environment variables specified, but if any of the environment variables are not defined, the process exits (throws a catchable error).

Metadata

  • MIT
  • Whatever
  • Unknown
  • released 7/12/2019

Downloads

Maintainers