Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@humanwhocodes/env
Advanced tools
If you find this useful, please consider supporting my work with a donation.
A utility for verifying that environment variables are present in Node.js. 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 program has been initiated, to fail fast and let you know that environment variables haven't been setup correctly.
npm install @humanwhocodes/env --save
# or
yarn add @humanwhocodes/env
Import into your Node.js project:
// CommonJS
const { Env } = require("@humanwhocodes/env");
// ESM
import { Env } from "@humanwhocodes/env";
By default, an Env
instance will read from process.env
.
Import into your Deno project:
import { Env } from "https://unpkg.com/@humanwhocodes/env/dist/env.js";
By default, an Env
instance will read from Deno.env()
.
It's recommended to import the minified version to save bandwidth:
import { Env } from "https://unpkg.com/@humanwhocodes/env/dist/env.min.js";
However, you can also import the unminified version for debugging purposes:
import { Env } from "https://unpkg.com/@humanwhocodes/env/dist/env.js";
By default, an Env
instance will read from an empty object.
After importing, create a new instance of Env
to start reading environment variables:
const env = new Env();
// read a variable and don't care if it's empty
const username = env.get("USERNAME");
// read a variable and use a default if empty
const username = env.get("USERNAME", "humanwhocodes");
// read a variable and throw an error if it doesn't exist
const username = env.require("USERNAME");
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"
});
// read a variable and don't care if it's empty
const username = env.get("USERNAME");
// read a variable and throw an error if it doesn't exist
const username = env.require("PASSWORD");
FAQs
A utility to verify that environment variables exist.
The npm package @humanwhocodes/env receives a total of 7,511 weekly downloads. As such, @humanwhocodes/env popularity was classified as popular.
We found that @humanwhocodes/env demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.