Installation
6 items tagged with "installation"
FAQs6
How do I install Node.js to run the Vibgrate CLI?
The Vibgrate CLI requires Node.js >= 20.0.0. On macOS, install via Homebrew: brew install node@22. On Windows, download from nodejs.org or use winget ...
How do I install Node.js on macOS?
Use Homebrew (recommended): brew install node@22. Alternatively, use nvm for version management: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm...
How do I install Node.js on Windows?
Use winget (recommended): winget install OpenJS.NodeJS.LTS. Alternatively, download the Windows installer from nodejs.org and run it. You can also use...
How do I install the Vibgrate CLI?
Install as a dev dependency in your project: npm install -D @vibgrate/cli (or use pnpm, yarn, bun). You can also run without installing using npx: npx...
Should I use npx or install Vibgrate globally?
Use npx @vibgrate/cli scan . for one-off scans without installation — always gets the latest version. For projects, install as devDependency (npm inst...
The scan mentions missing security scanners. What should I do?
Extended security scanners check for installed tools like npm audit. If tools are missing, you can use --install-tools to auto-install via Homebrew (m...