mediator-module
v0.0.5
Published
mediator module
Readme
mediator-module

mediator module
Install
$ npm install --save mediator-moduleUsage
var MediatorModule = require('mediator-module');
class FirstMediatorModule extends MediatorModule {
constructor () {
super();
this.mediator.subscribe('test', this.aTestFunction);
}
*aTestFunction () {
console.log('a func called');
}
}
class SecondMediatorModule extends MediatorModule {
constructor () {
super();
}
testPublish () {
this.mediator.publish('test');
}
}License
MIT © PAIO co.,ltd.
