Socket
Book a DemoInstallSign in
Socket

event-manager

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

event-manager

Higher level event management designed to facilitate fluent domain-specific event subscriptions.

latest
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

EventManager

Higher level event management designed to facilitate fluent domain-specific event subscriptions.

For example component/events uses EventManager to provide fluent dom node event subsciptions, while component/delegates does the same, however for delegated events.

Installation

$ component install component/event-manager

API

EventManager()

Initialize an EventManager with the given target object which events will be bound to, and the obj which will receive method calls.

EventManager.onbind(fn:Function)

Register bind function.

EventManager.onunbind(fn:Function)

Register unbind function.

EventManager.bind(event:String, [method]:String)

Bind to event with optional method name. When method is undefined it becomes event with the "on" prefix.

 events.bind('login') // implies "onlogin"
 events.bind('login', 'onLogin')

EventManager.unbind([event]:String, [method]:String)

Unbind a single binding, all bindings for event, or all bindings within the manager.

  evennts.unbind('login', 'onLogin')
  evennts.unbind('login')
  evennts.unbind()

License

MIT

FAQs

Package last updated on 08 Jan 2013

Did you know?

Socket

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