EnvGuard Pro is distributed as a .tgz package you install into your project.
This page includes copy-paste commands and a quick verification checklist.
Use this when EnvGuard Pro is provided as a downloadable archive from a private GitHub repository.
Download the .tgz archive from the private repository (requires access).
libs/Keep the archive in your project so installs are reproducible (and work offline).
Point npm at the local archive to add it to node_modules.
.tgz extension (still a .tar.gz under the hood).
Example layout and commands (adjust the filename/version you received):
your-project/ ├── libs/ │ └── path/to/file.tgz ├── src/ ├── package.json └── …
$ npm install ./libs/path/to/file.tgz
Run these commands from your project root. If your setup exposes envguard instead of envguard-pro, the commands are interchangeable.
npx envguard-pro --version (or npx envguard --version).--help.Common install issues and quick fixes.
Use npx envguard-pro (or npx envguard) from your project root, or add an npm script, instead of calling a global binary.
Make sure your project directory is user-writable and avoid running npm with elevated permissions.
Upgrade Node.js to a modern LTS if you see syntax or runtime errors during install or execution.