Installation
Global Install
Section titled “Global Install”npm install -g envpkt# orpnpm add -g envpktOnce installed globally, the envpkt command is available everywhere:
envpkt --versionenvpkt --helpLocal Install
Section titled “Local Install”Add envpkt as a dev dependency to your project:
npm install -D envpkt# orpnpm add -D envpktThen run via npx or package scripts:
npx envpkt auditRun Without Installing
Section titled “Run Without Installing”npx envpkt env scannpx envpkt auditLibrary Usage
Section titled “Library Usage”envpkt is also a TypeScript library. Import functions directly:
import { boot, loadConfig, computeAudit, scanFleet } from "envpkt"See the Library API reference for full documentation.