Running Noir

Basic Scan

Scan current directory:

noir -b .

Scan subdirectory:

noir -b ./my_app

Viewing Help Information

noir -h

Checking Supported Technologies

noir --list-techs

Output Formats

Default output is table format. Other formats:

JSON Output

noir -b . -f json

YAML Output

noir -b . -f yaml

OpenAPI Specification

noir -b . -f oas3

Suppressing Logs

noir -b . --no-log

Verbose Output

noir -b . --verbose

Output Customization

Include File Paths

noir -b . --include-path

Include Technology Information

noir -b . --include-techs

Combine both:

noir -b . --include-path --include-techs
Esc