npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

better-event-listener

v1.0.2

Published

A lightweight ES6 component that can be used in place of the standard .addEventListener() function. Provides browser compatibility as well the ability to add events to an array of elements!

Downloads

5

Readme

BetterEventListener.js

The default el.addEventListener() for JS kinda annoys me. Mainly because you have to manually provide a fallback solution for IE11 < but also because like many JS developers, I came to JavaScript from jQuery and although I detest jQuery at this point in time, I really like it's .on() method for attaching event listeners to elements. I liked the way it would take a list of elements and auto loop through them and apply the listeners. Sometimes, this is really, really handy for quick bit’s of code.

This ES6 module essentially adds a method, that you can name yourself, to the Object.prototype (Isn't enumerable). This method, by default is called .bEvent(), works just like the normal .addEventListener() in regards that it is bound to the Object.prototype, takes in an event name as the first parameter and then the callback function as the second. The difference is that the method works if called on a NodeList, not just a single element. The code detects whether it is a single element or array, like jQuery, and add's the event listener on each. The second difference is that it can take an array of event listeners, not just one. The final difference is that it detects support for .addEventListener() and provides a fallback if not found.

Usage


  1. Installation
npm install better-event-listener --save

or download the dist/BetterEventListener.js for manual use.

  1. Import the Module
import BetterEventListener from 'better-event-listener';
// or
const BetterEventListener = require('better-event-listener');
  1. Instantiate the class (This only ever needs to be run once)
new BetterEventListener();

// Optional method name override
new BetterEventListener({methodName: 'myBindEvent'});
  1. Go nuts!
// Single Element, single event..
button.bEvent('click', function(e) { ... });


// Single Element, multiple events..
button.bEvent(['click', 'touchend'], function(e) { ... });


// Multiple elements, single event..
buttons.bEvent('click', function(e) { ... });


// Multiple elements, multiple events..
buttons.bEvent(events, function(e) ( ... });


// Custom method name..
new BetterEventListener({methodName: 'myBindEvent'});

buttons.myBindEvent(events, function(e) ( ... });

Disclaimer

I understand adding methods to the Object.prototype is considered a bad practise. One being regulation over other packages that may name the method you create the same. This can cause all sorts of complications down the line. As a solution for this, when instanciating the method creation, you can provide an option to set the method name to whatever you want so say there is another package that uses .bEvent(), then you can change it to what you want e.g. bEventer.

For this reason however, I recommend against using this package if you are part of a large team.

Contributing contributions welcome