Scan
8 items tagged with "scan"
FAQs8
How do I run my first scan?
Run vibgrate scan . in your project directory. The scan recursively discovers projects (package.json, .csproj, pom.xml, requirements.txt), detects run...
What does the scan command analyze?
The scan analyzes: runtime versions (Node.js, .NET, Python, Java), framework versions (React, Next.js, Angular, Vue, NestJS, etc.), all dependencies f...
What flags does the scan command support?
Key flags: --format (text/json/sarif/md), --out (output file), --fail-on (error/warn - exit code 2 if findings exist), --baseline (compare against bas...
How do I scan a specific directory instead of the whole project?
Pass the path as an argument: vibgrate scan ./packages/api or vibgrate scan /absolute/path/to/project. The scan will discover projects recursively fro...
How do I scan a Node.js or TypeScript project?
Run vibgrate scan . in your project directory. Vibgrate detects package.json files, lockfiles (npm, pnpm, yarn), .nvmrc/.node-version, and tsconfig.js...
How do I scan a .NET project?
Run vibgrate scan /path/to/dotnet-solution. Vibgrate discovers .sln and .csproj files, evaluates target framework version (net6.0, net7.0, net8.0), .N...
How do I scan a Python project?
Run vibgrate scan /path/to/python-project. Vibgrate detects requirements.txt, pyproject.toml, setup.py, and Pipfile. It analyzes Python version from ....
How do I scan a Java project?
Run vibgrate scan /path/to/java-project. Vibgrate discovers pom.xml (Maven) and build.gradle/build.gradle.kts (Gradle) files. It analyzes Java version...