1.1.2 • Published 10 years ago

simple-listen v1.1.2

Weekly downloads
21
License
BSD-3-Clause
Repository
github
Last release
10 years ago

Simple Listen

Small utility for adding event listeners that returns the listener for easy unsubscribing

Installation

$ npm install simple-listen

##API

###listen(el, events, cb, capture, context)

  • el - the DOM element you are attaching events to
  • events - [string|arraystring] - the event types to attach
  • cb - function - the function to call when event fires
  • capture - boolean - false - use capture
  • context - object - null - the context applied to cb

Example

import listen from 'simple-listen';

const el = document.getElementById('clickable');
const callback = (e) => console.log(e.type);

const myListener = listen(el, 'click mouseenter mouseleave', callback);
myListener(); // remove event listener

// Multiple listeners
const listeners = [];
listeners.push(listen(el, 'click', callback));
listeners.push(listen(el, 'mouseenter', callback));
listeners.push(listen(el, 'mouseleave', callback));
listeners.push(listen(window, 'scroll', callback));
listeners.push(listen(window, 'resize', callback));

// quickly remove the event listeners
listeners.forEach((listener) => listener());

License

Modified BSD

1.1.2

10 years ago

1.1.0

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago

0.1.0

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago