@org_pigeon/cli
v0.1.0
Published
CLI for Pigeon — analyze any JS/TS project and generate interactive HTML reports
Maintainers
Readme
@org_pigeon/cli
CLI for Pigeon — analyze any JS/TS project and generate interactive HTML reports.
Install
npm install -g @org_pigeon/cliUsage
# Basic usage — generates pigeon-report.html
pigeon analyze ./my-project
# Custom output name
pigeon analyze ./my-project -o report.html
# Export machine-readable JSON (for the Pigeon Web Explorer)
pigeon analyze ./my-project --json
pigeon analyze ./my-project --json my-graph.json
# Only analyze specific files
pigeon analyze ./my-project --include "src/**/*.ts"
# Skip route detection
pigeon analyze ./my-project --no-routesOptions
pigeon analyze [dir]
dir Directory to analyze (default: current directory)
Options:
-o, --output <file> Output HTML file (default: pigeon-report.html)
--json [file] Also export graph as JSON (default: pigeon-graph.json)
--no-routes Skip route detection
--no-env Skip env var detection
--include <patterns> Glob patterns to include (comma-separated)
--exclude <patterns> Glob patterns to exclude (comma-separated)
-V, --version Show version
-h, --help Show helpLicense
MIT
