SDK v1.0.04 reference sections · 55 documented entries
Modules SDK
Everything you need to build production-ready Meteorack modules. Contracts, services, traits, and React components.
Canonical Docs
Runtime guides synced from the SDK source tree. These are the versioned docs that should eventually back the full public docs portal.
Reference Sections
Define your module
One JSON manifest. The SDK handles the rest.
module.json
{
"slug": "my-analytics",
"name": "My Analytics",
"version": "1.0.0",
"min_sdk_version": "1.0.0",
"max_tested_sdk_version": "1.0.0",
"capabilities": ["manage_options"],
"requires": [],
"priority": 10,
"provider": "acme",
"entrypoints": {
"admin": ["my-analytics"]
},
"description": "Analytics module for Meteorack"
}