vulkro export
Export the detected API surface in another format. Where
vulkro discover shows the endpoint map interactively,
export writes it out for another tool.
Usage
vulkro export [PATH] --target openapi -o openapi.json
| Argument | Description | Default |
|---|---|---|
PATH | Path to the project root. | . |
Flags
| Flag | Description |
|---|---|
--target <TARGET> | Export target: openapi (default) or json. |
--output, -o <OUTPUT> | Write to a file instead of stdout. |
Examples
# OpenAPI 3.x of the discovered surface.
vulkro export . --target openapi -o openapi.json
# Raw JSON of the endpoint surface.
vulkro export . --target json > surface.json
Related
vulkro discover- the endpoint map.vulkro openapi- a fuller OpenAPI 3.1 generator.- Output formats - the full format catalogue.