mongodb-js / hadron-app-registry

Hadron Application Core Components

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hadron-app-registry

Hadron App Registry

Installation

npm install --save hadron-app-registry

Usage

const AppRegistry = require('hadron-app-registry');

var registry = new AppRegistry();

registry.registerAction('Action::MyAction', action);
registry.registerComponent('Component::MyComponent', component);
registry.registerStore('Store::MyStore', store);

registry.actions; //=> { 'Action::MyAction': action }
registry.components; //=> { 'Component::MyComponent': component }
registry.stores; //=> { 'Store::MyStore':: store }

registry.getAction('Action::MyAction'); //=> action
registry.getComponent('Component::MyComponent'); //=> component
registry.getStore('Store::MyStore'); //=> store

registry.deregisterAction('Action::MyAction');
registry.deregisterComponent('Component::MyComponent');
registry.deregisterStore('Store::MyStore');

License

Apache 2.0

About

Hadron Application Core Components

License:Apache License 2.0


Languages

Language:JavaScript 100.0%