npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

envalid-unused

v1.0.3

Published

Detect unused environment variables by comparing process.env with envalid's cleanEnv result

Readme

envalid-unused

Detect unused environment variables by comparing process.env with envalid's cleanEnv result.

Installation

npm install envalid-unused

Usage

import { cleanEnv, str, num } from 'envalid';
import { warnUnused } from 'envalid-unused';

const env = cleanEnv(process.env, {
  API_URL: str(),
  PORT: num(),
});

// Warn about any env variables not defined in the schema
warnUnused(env);
// Output: [envalid-unused] Found 2 unused environment variable(s): DATABASE_URL, SECRET_KEY

API

warnUnused(cleanedEnv, options?)

Parameters

  • cleanedEnv - The result from envalid's cleanEnv function
  • options - Optional configuration object:
    • warn - Custom warning function (default: console.warn)
    • ignorePrefixes - Array of prefixes to ignore (default: common system prefixes like npm_, NODE_, etc.)
    • ignore - Array of specific variable names to ignore

Returns

Array of unused environment variable names.

Example with options

const unused = warnUnused(env, {
  warn: (msg) => logger.warn(msg),
  ignorePrefixes: ['npm_', 'NODE_', 'CI_'],
  ignore: ['DEBUG', 'VERBOSE'],
});

if (unused.length > 0) {
  // Handle unused variables
}

DEFAULT_IGNORE_PREFIXES

Export of the default prefixes that are ignored:

import { DEFAULT_IGNORE_PREFIXES } from 'envalid-unused';

// Extend the defaults
warnUnused(env, {
  ignorePrefixes: [...DEFAULT_IGNORE_PREFIXES, 'MY_PREFIX_'],
});

License

MIT