Export Components
Export selected components as a JSON collection for sharing or backup.
Note: Use the Browse page to select specific components,
or use the API endpoint /api/components to export all components programmatically.
Quick Export Options
Export Format
Exported files contain:
- Metadata (timestamp, version, count)
- Complete component data
- All LLM-generated metadata
- Source code and signatures
Example:
{
"exported_at": "2024-12-05T10:30:00",
"version": "1.0",
"count": 42,
"components": [
{
"name": "validate_email",
"component_type": "function",
"source_code": "...",
"description": "...",
...
}
]
}