Socket
Socket
Sign inDemoInstall

@arnellebalane/event-emitter

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @arnellebalane/event-emitter

JavaScript EventEmitter implementation


Version published
Maintainers
1
Install size
15.5 kB
Created

Readme

Source

EventEmitter

JavaScript EventEmitter implementation.

Installation

Install via npm (or yarn):

npm install @arnellebalane/event-emitter

Or via CDN (unpkg.com):

<script src="https://unpkg.com/@arnellebalane/event-emitter/dist/event-emitter.umd.js"></script>

Usage

This module exposes a class that you can extend from to make your own classes support emitting events and being listened to for events.

import EventEmitter from '@arnellebalane/event-emitter';

class MyClass extends EventEmitter {
    // ...
}

This class is exposed as window.EventEmitter when not using AMD or CommonJS.

API

Instances of EventEmitter and its subclasses will have the following methods:

  • .on(name, callback): Listen for an event to be emitted from the instance.
    • name (String). The name of the event to listen to.
    • callback (Function). The function to run when the event is emitted.
  • .off(name[, callback]): Stop listening for an event to be emitted from the instance.
    • name (String). The name of the event to stop listening to.
    • callback (Function, Optional). The callback function to remove. If given, only that callback will be removed. Otherwise, all callback functions for that event will be removed.
  • .emit(name[, data]): Broadcast an event to all observers.
    • name (String). The name of the event to broadcast.
    • data (Any, Optional). The data to be passed to the callback functions.

License

MIT License

Keywords

FAQs

Last updated on 05 Nov 2018

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