GithubHelp home page GithubHelp logo

scoped-events's Introduction

travis-ci status Dependency Status Coverage Status

ScopedEvents

Small event library that lets you namespace/scope your events. Also includes a mixin to add the functionality to any other object.

Install

With npm do:

npm install scoped-events

Usage

You can use ScopedEvents directly, as an Event Dispatcher (singleton), or as a mixin to add the functionality to your own prototypes or objects.

Details

When you trigger an event, if it is a child scope of another event, it will trigger all of it's parents as well. So if you have the events "routes" and "routes:add" when you trigger "routes:add" it will also trigger "routes" - The first argument to any listener callbacks is either the child scope that triggered it, or null. So when "routes:add" triggers "routes", the first argument the callback for "routes" receives is "add".

// Normal use
var ScopedEvents = require('scoped-events');
var Events = new ScopedEvents();

Events.on('event', callback);

// Dispatcher use
var EventDispatcher = require('scoped-events').Dispatcher;
EventDispatcher.on('event', callback);

// Mixin use
// Works on plain objects too
var eventMixin = require('scoped-events').mixin;

function PersonClass() {
  this.name = 'Anonymous';

  this.on('all', function(event) {
    console.log("Called event: %s", event);
  });
}

eventMixin(PersonClass);

PersonClass.prototype.setName = function(name) {
  this.name = name;
  this.trigger('name:set');
};

var Person = new PersonClass();
Person.trigger('event:to:trigger');

scoped-events's People

Contributors

spencer-leopold avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.