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 🙏

© 2026 – Pkg Stats / Ryan Hefner

ng-event-emitter

v0.3.0

Published

Event Emitter class

Readme

ngEventEmitter

This is a small library to add an event emitter functionality in AngularJS 1.x, and it contains a small factory with two methods, .on and .triggerEvent, written mostly because I didn't want to depend to the $rootScope or the $scope providers, but to have a much more lightweight version of event emitters.

Installation

To download the library you can do it via bower:

bower install ng-event-emitter --save

Or via NPM

npm install ng-event-emitter --save

To add to your angular project, just add the ngEventEmitter into your module dependencies, and EventEmitter as a dependency injection to your service/controller.

The .on(eventName, callback) method requires two arguments, an eventName (a simple string to identify the event) and a callback function. Multiple callbacks can be attached to the same event, and they will all be invoked once the event is triggered. The .triggerEvent(eventName [,data]) method simply trigger the passed event, which is the only compulsory argument, a second argument can be passed to send data to the .on method, as shown in the second example down below.


angular.module('myApp', ['ngEventEmitter'])

.service('MyService', function(EventEmitter){
  this.events = new EventEmitter();

  this.events.on('salute', function(){
    console.log('hello world');
  });

  this.events.triggerEvent('salute'); // it will print `hello world` in the console

  // Passing data from the triggerEvent
  this.events.on('cheers', function(name){
    console.log('cheers ' + name);
  });

  this.events.triggerEvent('cheers', 'Alex'); // it will print `cheers Alex` in the console

  // Multiple callbacks for the same event

  this.events.on('test', function(){
    console.log('test 1');
  });

  this.events.on('test', function(){
    console.log('test 2');
  });

  this.events.triggerEvent('test'); // it will print `test 1` and `test 2` in the console

  // One callback for multiple events with passed data

  this.events.on(['test1', 'test2'], function(name){
    console.log('hello ' + name);
  });

  this.events.triggerEvent('test1', 'Alex'); // it will print `test Alex` in the console
  this.events.triggerEvent('test2', 'Liza'); // it will print `test Liza` in the console
});

If you want to clear all the callbacks previously assigned to a specific events, you can pass the options object as a second argument, specifying clearEvent to be true, as shown in the example below:

this.events.on('test', function(){
  console.log('test 1');
});

this.events.on('test', {clearEvent: true} function(){
  console.log('test 2');
});

this.events.triggerEvent('test'); // it will print `test 2` only in the console

Unit tests

To run the unit tests, just use the command npm test from the command line, but be sure to have ran npm install and bower install before to install all the dependencies needed.