Constructs a plugin Meta from a single canonical DXN. The key DXN is the one source of truth; id (bare NSID) and version (semver) are derived from it so each datum has exactly one home and cannot drift out of sync.
key
id
version
export const meta = Plugin.makeMeta({ key: DXN.make('org.dxos.plugin.example', '0.8.3'), name: 'Example',}); Copy
export const meta = Plugin.makeMeta({ key: DXN.make('org.dxos.plugin.example', '0.8.3'), name: 'Example',});
Constructs a plugin Meta from a single canonical DXN. The
keyDXN is the one source of truth;id(bare NSID) andversion(semver) are derived from it so each datum has exactly one home and cannot drift out of sync.