0.0.2 • Published 11 years ago

air_traffic_controller v0.0.2

Weekly downloads
3
License
-
Repository
github
Last release
11 years ago

air_traffic_controller

Re routing event emitter events for great good

Example:

  var EventEmitter = require('events').EventEmitter,
      emitter      = new EventEmitter(),
      atc          = require('air_traffic_controller').createController(emitter);

  function handleThis(arg1, arg2) {

  }

  atc.route('1', '2')

  emitter.on('2', handleThis);

  emitter.emit('1', 'Brandon', 'Farmer');

handleThis will be called and receive the arguments 'Brandon' and 'Farmer'

I am planning on using this module to connect other event based modules and for fanning out events

0.0.2

11 years ago

0.0.1

11 years ago