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

  ...
}

Readme

Keywords

none

Package Sidebar

Install

npm i abe-utils

Weekly Downloads

0

Version

0.1.0

License

MIT

Last publish

Collaborators

  • abejfehr