This repository is deprecated. Microframework architecure has changed. Please consider writing your own module for a newer versions of microframework.
Adds integration between event-dispatch and microframework.
-
Install module:
npm install --save microframework-event-dispatch -
Simply register module in the microframework when you are bootstrapping it.
import {MicroFrameworkBootstrapper} from "microframework/MicroFrameworkBootstrapper"; import {EventDispatchModule} from "microframework-event-dispatch/EventDispatchModule"; new MicroFrameworkBootstrapper({ baseDirectory: __dirname }) .registerModules([ new EventDispatcherTsModule() ]) .bootstrap() .then(result => console.log('Module is running. Subscribers can be used now')) .catch(error => console.error('Error: ', error));
-
ES6 features are used, so you may want to install es6-shim too:
npm install es6-shim --saveyou may need to
require("es6-shim");in your app. -
Now you can use event-dispatch module in your microframework.
- cover with tests
- add more docs