Env utility
by Nicholas C. Zakas
If you find this useful, please consider supporting my work with a donation.
Description
A utility for verifying that environment variables are present in Node.js, Deno, and Bun. The main use case is to easily throw an error when an environment variable is missing. This is most useful immediately after a Node.js or Deno program has been initiated, to fail fast and let you know that environment variables haven't been setup correctly.
Usage
Node.js
Install using npm or yarn:
npm install @humanwhocodes/env
# or
yarn add @humanwhocodes/env
Import into your Node.js project:
const { Env } = require("@humanwhocodes/env");
import { Env } from "@humanwhocodes/env";
By default, an Env
instance will read from process.env
.
Deno
Import into your Deno project:
import { Env } from "https://cdn.skypack.dev/@humanwhocodes/env?dts";
By default, an Env
instance will read from Deno.env
.
Bun
Install using this command:
bun add @humanwhocodes/env
Import into your Bun project:
import { Env } from "@humanwhocodes/env";
By default, an Env
instance will read from process.env
.
Browser
It's recommended to import the minified version to save bandwidth:
import { Env } from "https://cdn.skypack.dev/@humanwhocodes/env?min";
However, you can also import the unminified version for debugging purposes:
import { Env } from "https://cdn.skypack.dev/@humanwhocodes/env";
By default, an Env
instance will read from an empty object.
API
After importing, create a new instance of Env
to start reading environment variables:
const env = new Env();
const username = env.get("USERNAME");
const username = env.get("USERNAME", "humanwhocodes");
const usernameExists = env.has("USERNAME");
const username = env.first(["USERNAME", "USERNAME2"], "humanwhocodes");
const username = env.require("USERNAME");
const username = env.requireFirst(["USERNAME", "USERNAME2"]);
To retrieve more than one required environment variable at one time, you can use the required
property with destructuring assignment:
const env = new Env();
const {
CLIENT_ID,
CLIENT_SECRET
} = env.required;
In this example, an error is thrown if either CLIENT_ID
or CLIENT_SECRET
is missing or an empty string. The required
property is a proxy object that throws an error whenever you attempt to access a property that doesn't exist.
If you don't want to throw an error for environment variables containing an empty string, use the exists
property:
const env = new Env();
const {
CLIENT_ID,
CLIENT_SECRET
} = env.exists;
You can also specify an alternate object to read variables from. This can be useful for testing or in the browser (where there is no environment variable to read from by default):
const env = new Env({
USERNAME: "humanwhocodes"
});
const username = env.get("USERNAME");
const password = env.require("PASSWORD");
Developer Setup
- Fork the repository
- Clone your fork
- Run
npm install
to setup dependencies - Run
npm test
to run tests
License
BSD 3-Clause