shoutout
v1.1.0
Published
The simplest eventing library that could possible work.
Downloads
155
Readme
Shout-out
The simplest eventing library that could possible work.
Example
var signal = require('shoutout')
var clicked = signal()
clicked.add(function(x, y){ console.log(x, y) })
clicked(10, 10)
// => 10 10
Installing
Easy-modo: grab it from NPM (use Browserify if you're on a browser):
$ npm install shoutout
If you're using AMD or no module system at all, you can grab the
dist/shoutout.umd.js
file. Note that NPM is the recommended and officially supported way, and that the UMD bundle will include all the dependencies for the library.
Documentation
Read online at http://shoutout.rtfd.org/ or build your own local copy:
$ make docs
Note that you'll need Sphinx
Tests
For node:
$ npm test
For the browser:
$ npm install -g brofist-browser
$ make test-browser
Platform support
This library assumes an ES5 environment, but can be easily supported in ES3 platforms by the use of shims. Just include es5-shim :3
Support
- Use the Github tracker for reporting bugs/requesting features.
- The Google Group for general discussion.
- Follow @orphoundation on Twitter for quick updates.
- Check the Google+ community for major updates.
Developers
- Maintainers: Quildreen Motta
- Contributors
Licence
MIT/X11. i.e.: do whatever you want.