Npm
10 items tagged with "npm"
Tutorials2
FAQs7
How do I install the Vibgrate CLI?
Install as a dev dependency in your project: npm install -D @vibgrate/cli@latest (or use pnpm, yarn, bun). You can also run without installing using n...
What are common errors when running the CLI on macOS?
Common issues: 'command not found: vibgrate' (package not installed globally or npx not used). Permission denied (use sudo cautiously or fix with sudo...
How do I fix permission denied errors on macOS?
For npm global packages: avoid sudo, instead fix ownership with sudo chown -R $(whoami) ~/.npm and sudo chown -R $(whoami) /usr/local/lib/node_modules...
Does Vibgrate support monorepos?
Yes. Vibgrate automatically discovers every project in your workspace (multiple package.json files, .csproj files, go.mod, etc.). For npm/pnpm/yarn wo...
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 instal...
The scan says lockfile not found. Is that a problem?
Lockfile warnings indicate you don't have a package-lock.json, yarn.lock, pnpm-lock.yaml, or bun.lockb. This affects dependency graph analysis and dup...
How do I update the Vibgrate CLI?
Run vg update to check for and install updates. Use --check to see if updates are available without installing. For project installs: npm update @vibg...