zz 65c8a28f48 项目初始化 2 dni temu
..
test 65c8a28f48 项目初始化 2 dni temu
.travis.yml 65c8a28f48 项目初始化 2 dni temu
LICENSE 65c8a28f48 项目初始化 2 dni temu
README.md 65c8a28f48 项目初始化 2 dni temu
index.d.ts 65c8a28f48 项目初始化 2 dni temu
index.js 65c8a28f48 项目初始化 2 dni temu
package.json 65c8a28f48 项目初始化 2 dni temu

README.md

ngraph.events

Small and powerful eventing in node and browser

build status

Example

var eventify = require('ngraph.events');
var yourObject = {}; // any javascript object

eventify(yourObject);

// now any object can listen to events from your object
yourObject.on('beep', function(name) { console.log('Hello ' + name); });

// and you can fire events from your object:
yourObject.fire('beep', 'World!'); // prints 'Hello World!'

// stop listen to events:
yourObject.off('beep');

More advanced examples:

var eventify = require('ngraph.events');
var yourObject = eventify({});

// Pass context to event handler as last argument:
yourObject.on('beep', function () { console.log(this === yourObject); }, yourObject);
yourObject.fire('beep'); // prints true;

// Pass additional arguments to fire:
var onBop = function (x, y) { console.log(x + y); };
yourObject.on('bop', onBop);
yourObject.fire('bop', 40, 2); // prints 42;

// Remove given event handler for 'bop' event
yourObject.off('bop', onBop);

// Remove all event listeners from your object:
yourObject.off();

Why?

This module is a part of larger experiment which I'm currently working on. EventEmitter seemed to be pretty heavyweighted for my needs, so I rolled out this tiny library :).

Install

With npm do:

npm install ngraph.events

License

BSD 3-Clause