Ghost/ghost/domain-events
2022-12-12 13:20:22 +00:00
..
lib Added new email event processor (#15879) 2022-11-29 11:15:19 +01:00
test Added @tryghost/domain-events package 2021-09-17 15:22:08 +02:00
.eslintrc.js Updated Eslint ECMAScript compatibility to 2022 2022-08-09 15:51:40 +02:00
index.js Added @tryghost/domain-events package 2021-09-17 15:22:08 +02:00
package.json Update dependency mocha to v10.2.0 2022-12-12 13:20:22 +00:00
README.md Tidied up package READMEs 2022-07-25 15:17:12 +02:00

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);