Skip to content

Installation

Terminal window
npm install -g envpkt
# or
pnpm add -g envpkt

Once installed globally, the envpkt command is available everywhere:

Terminal window
envpkt --version
envpkt --help

Add envpkt as a dev dependency to your project:

Terminal window
npm install -D envpkt
# or
pnpm add -D envpkt

Then run via npx or package scripts:

Terminal window
npx envpkt audit
Terminal window
npx envpkt env scan
npx envpkt audit

envpkt is also a TypeScript library. Import functions directly:

import { boot, loadConfig, computeAudit, scanFleet } from "envpkt"

See the Library API reference for full documentation.