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

global-event

v0.4.2

Published

A simple event addon.

Downloads

14

Readme

global-event

Build Status Coverage Status

A simple event addon.

How to use

All functions will return the global-event object for chained calls.

on

Adds a listener function to the specified event.

  • type

    Name of the event to attach the listener to.

  • callback

    Method to be called when the event is emitted.

  • [context]

    Context of the callback function. If it doesn't provide, the function will be executed in the global scope.

  • [namespace]

    Namespace of the listener.

once

Adds a listener function to the specified event which will be emitted only once.

  • type

    Name of the event to attach the listener to.

  • callback

    Method to be called when the event is emitted.

  • [context]

    Context of the callback function. If it doesn't provide, the function will be executed in the global scope.

  • [namespace]

    Namespace of the listener.

emit

  • type

    Name of the event you want to add the listeners from.

  • [callback]

    The callback which will be called after all listeners run.

  • [...arguments]

    Arguments you want to pass to the listener.

off

Removes listener functions of the specified event.

  • type

    Name of the event you want to remove the listeners from.

  • [namespace]

    Namespace of the listeners you want to remove. If it doesn't provide, the function will remove all the listeners of the specified event.

clear

Remove all the listener functions.

Demo

import { on, once, emit, off, clear } from 'global-event';

on(
    'logEvent', 
    (information) => console.log(information, 1), 
    null, 
    'demoSpace'
).
on(
    'logEvent', 
    (information) => console.log(information, 2),
    null,
    'anotherSpace'
);

emit('logEvent', 'The information');
// output 'The information 1'
// output 'The information 2'

off(
    'logEvent',
    'demoSpace'
).
emit(
    'logEvent',
    'Another information'
);
// output 'Another information 2'

off(
    'logEvent'
).
emit(
    'logEvent',
    'Third information'
);
// no output

let number1 = 0;
once(
    'addEvent', 
    () => {
        ++number1;
        console.log(number1);
    }
).emit(
    'addEvent'
).emit(
    'addEvent'
);
// output 1
// no output

clear();
// all listeners will be removed

TODO

Update

  • 2016-07-08

    Fix the bug which will make error when users called once function.

  • 2016-07-07

    Add once function.

  • 2016-03-08

    Test Travis-CI.

  • 2016-03-07 0.3.0

    1. emit function now supports chained calls, and the second parameter of emit changed to callback which will be called after all event listeners be executed.
    2. Added clear function.
  • 2016-03-07 0.2.1

    Complete README.md.

  • 2016-03-05 0.2.0

    on and off functions now can call in chained.