Export Results
Export Jnkn results in various formats for integration with other tools.
JSON Export
Default format, suitable for scripting:
SARIF Export
For IDE integration and GitHub Advanced Security:
Upload to GitHub:
CSV Export
For spreadsheet analysis:
GraphML Export
For visualization in tools like Gephi or yEd:
DOT Export
For Graphviz visualization:
Export Full Graph
Export all nodes and edges:
Structure:
{
"nodes": [
{"id": "env:DATABASE_URL", "type": "env_var", "metadata": {...}},
...
],
"edges": [
{"source": "file://src/app.py", "target": "env:DATABASE_URL", "type": "reads"},
...
]
}
Filter Exports
Export only certain types:
jnkn export --type env_var --format json > env-vars.json
jnkn export --type infra --format json > infrastructure.json