0.1.0 • Published 7 years ago

abe-utils v0.1.0

Weekly downloads
2
License
MIT
Repository
-
Last release
7 years ago

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

  ...
}