Ghost/ghost/domain-events
2023-09-01 15:51:17 +02:00
..
lib
test
.eslintrc.js
index.js
package.json Updated linting and testing packages 2023-09-01 15:51:17 +02:00
README.md

Domain Events

Usage

const DomainEvents = require('@tryghost/domain-events');

class MyEvent {
    constructor(message) {
        this.timestamp = new Date();
        this.data = {
            message
        };
    }
}

DomainEvents.subscribe(MyEvent, function handler(event) {
    console.log(event.data.message);
});

const event = new MyEvent('hello world');

DomainEvents.dispatch(event);