Socket
Socket
Sign inDemoInstall

backbone-esnext-events

Package Overview
Dependencies
3
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    backbone-esnext-events

Separates 'events' support from Backbone in addition to adding TyphonJS extensions.


Version published
Weekly downloads
2.4K
increased by19.23%
Maintainers
1
Install size
2.35 MB
Created
Weekly downloads
 

Changelog

Source

0.3.5 (2017-07-12)

  • Added async / await tests and explicit 'async' keyword to triggerAsync

Readme

Source

backbone-esnext-events

NPM Documentation Code Style License Gitter

Build Status Coverage Dependency Status

Separates 'Events' support from backbone-esnext in addition to adding TyphonJS extensions found in TyphonEvents. The events dispatch functionality is useful well outside the context of Backbone and is utilized across several TyphonJS repos. It should be noted that there are no dependencies with backbone-esnext-events and it can be used independently in any project without pulling in Underscore like Backbone does.

The default trigger mechanism work justs as it does with Backbone:

  • trigger - Invokes all targets matched with a one way message.

TyphonEvents adds new functionality for triggering events. The following are new trigger mechanisms:

  • triggerDefer - Defers invoking trigger to the next clock tick.
  • triggerSync - Synchronously invokes all targets matched and passes back a single value or an array of results to the callee.
  • triggerAsync - Asynchronously invokes all targets matched and passes back a promise resolved with a single value or an array of results through Promise.all which returns a single promise to the callee.

To import TyphonEvents and create a new instance:

import Events from 'backbone-esnext-events';

const eventbus = new Events();

// or extend a class to add event functionality
 
export default class MyThing extends Events {}

Please see backbone-esnext-eventbus for a module which provides a default main eventbus instance for ease of use across modules.

Keywords

FAQs

Last updated on 12 Jul 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc