New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

env-checkup-cli

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

env-checkup-cli

A simple CLI tool to check for missing environment variables before you run your app.

latest
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

env-checkup-cli

A simple CLI tool to check for missing environment variables before you run your app.

🤷‍♀️ What's the Problem?

Ever get the error [ERROR] Missing 2 keys: GITHUB_TOKEN, SENDGRID_API_KEY in production?

This tool solves that. It compares a .env.example file (your "source of truth") against your local .env file to make sure you haven't forgotten to add any new keys.

🚀 Installation

Install it globally to use it anywhere:

npm install -g env-checkup-cli

## ⚡ Usage

The command is `env-checkup`.

### 🔍 check

Compares a base file against one or more other files to find missing keys.

---

```bash
# Example
env-checkup check .env.example .env .env.development

Checking against source of truth: .env.example

  File: .env
  [SUCCESS] All 14 keys are present.

  File: .env.development
  [ERROR] Missing 2 keys:
    - GITHUB_TOKEN
    - SENDGRID_API_KEY


FAQs

Package last updated on 02 Nov 2025

Did you know?

Socket

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.

Install

Related posts