abe-utils

0.1.0 • Public • Published

abe-utils

A collection of reusable class I'm going to use in my own projects

Mediator/Party

A simple version of the mediator design pattern. The mediator mediates messages between Parties.

Example

class Controller extends Party {
  ...

  tellUser () {
    this.broadcast('MESSAGE_SENT', { message: 'Hello, world!' });
  }

  ...
}

class View extends Party {
  constructor () {
    this.on('MESSAGE_SENT', alert(message));
  }

  ...
}

/abe-utils/

    Package Sidebar

    Install

    npm i abe-utils

    Weekly Downloads

    11

    Version

    0.1.0

    License

    MIT

    Last publish

    Collaborators

    • abejfehr