@tryghost/domain-events
TypeScript icon, indicating that this package has built-in type declarations

0.1.14 • Public • Published

Domain Events

Install

npm install @tryghost/domain-events --save

or

yarn add @tryghost/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);

Develop

This is a mono repository, managed with lerna.

Follow the instructions for the top-level repo.

  1. git clone this repo & cd into it as usual
  2. Run yarn to install top-level dependencies.

Run

  • yarn dev

Test

  • yarn lint run just eslint
  • yarn test run lint and tests

Dependencies (0)

    Dev Dependencies (4)

    Package Sidebar

    Install

    npm i @tryghost/domain-events

    Weekly Downloads

    162

    Version

    0.1.14

    License

    MIT

    Unpacked Size

    3.68 kB

    Total Files

    6

    Last publish

    Collaborators

    • ryan_feigenbaum
    • erik-ghost
    • dvdwinden
    • vershwal
    • 9larsons
    • mike182uk
    • sagzy
    • chrisraible
    • jonhickman
    • kernalghost
    • hadret
    • minimaluminium
    • ronaldlangeveld
    • joeegrigg
    • sanne-san
    • djordjevlais
    • bobvaneck
    • zimoatghost
    • allouis
    • gargol
    • erisds
    • johnonolan
    • kevinansfield
    • cobbspur
    • aileencgn
    • jloh
    • daniellockyer
    • sam-lord
    • pauladamdavis