Skip to content

kaylie-alexa/mediatorjs

 
 

Repository files navigation

mediatorjs

Simple mediator pattern written in JS

mediator is a singleton. It is instantiated as soon as you require it and should remain alive as long as your app does. It is derived from marionette's wreqr, but we found a lot of trouble with circular dependencies while it was pre-packaged.

API

var mediator = require('mediatorjs');

// get and set for pseudo dependency injection
mediator.set('hello', 1);
mediator.get('hello'); // results in 1

// trigger
mediator.on('blah', function(data) {});
mediator.trigger('blah', {});

About

Simple mediator pattern written in JS

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 57.5%
  • CoffeeScript 34.8%
  • Shell 7.7%