Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.2 KB

File metadata and controls

39 lines (26 loc) · 1.2 KB

LWES - Light Weight Event System library for nodejs. Currently we only support listening to events but plan to support emmitting events as well.

curl http://npmjs.org/install.sh | sh
[sudo] npm install lwes
var LWES = require('lwes').LWES;
var lwesObj = new LWES();
var filteredEvents = ['EventTypeA', 'EventTypeB']

lwesObj.createListener(filteredEvents, function(lwesEvent) {
  console.log("I Found a filtered event: " + lwesEvent.type);
});
  • Check out the latest master to make sure the feature hasn’t been implemented or the bug hasn’t been fixed yet

  • Check out the issue tracker to make sure someone already hasn’t requested it and/or contributed it

  • Fork the project

  • Start a feature/bugfix branch

  • Commit and push until you are happy with your contribution

  • Make sure to add tests for it. This is important so I don’t break it in a future version unintentionally.

Copyright © 2011 Aaron Qian. See LICENSE.txt for further details.