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

event-sky

v2.0.1

Published

javascript event pub/sub utility

Downloads

26

Readme

Event Sky (event-sky)

An event pub/sub aggregate utility for javascript apps.

When designing javascript apps it's best to keep modules/features loosely coupled. A great method for accomplishing this is events via publish/subscribe handlers. "Event Sky" was designed to help your apps work without knowing about eachother by utilizing the events with Event Sky.

npm version Build Status semantic-release

JavaScript Style Guide forthebadge forthebadge

forthebadge

An event pub-sub aggregate utility for javascript environments.

Usage

EventSky is bundled as a UMD (universal module design) and can be used in the following ways:

Browser

<script src="https://unpkg.com/[email protected]/build.js" />

<script>
  EventSky.on('testEvent', console.info)

  EventSke.trigger('testEvent', 'It works!')

  console.log(EventSky.events)
</script>

Commonjs - Node/Browserify/Webpack

npm i -S event-sky or yarn add event-sky

const EventSky = require('event-sky')

Note: EventSky exports a singleton pattern module. This means it's the same object across require/import's in your commonjs environment, ie:

/* file1.js */

const eventSky = require('event-sky')

eventSky.on('testSingleton', (msg) => console.log(msg))
/* file2.js */

const eventSky = require('event-sky')

eventSky.trigger('testSingleton', 'The singleton pattern works!')

API

Event Hook Lifecycle

You can add event handlers in different lifecycle hooks, beforeAll, on, once, afterAll

const eventSky = require('event-sky')

eventSky.on('newMessage', (data) => { console.log(data) })
eventSky.beforeAll('newMessage'...)
eventSky.afterAll('newMessage'...)
eventSky.once('newMessage'...)

Trigger Events

const data = 'some string...'

eventSky.trigger('newMessage', data)

Turn Handlers Off

// by event id
const eventId = eventSky.on('newMessage', (data) => { console.log(data) })

eventSky.off(eventId)

// or by event name and handler
const handler = (data) => { console.log(data) }

eventSky.on('newMessage', handler)

eventSky.off('newMessage', handler)

A convenience method is available to turn all handlers off associated with an event name, ie:

eventSky.beforeAll('eventName', () => { /* ... */ })

eventSky.on('eventName`, () => { /* ... */ })

// remove all lifecycle hooks for event name "eventName"
eventSky.off.all('eventName')

Firehose

For development purposes you can initialize eventSky to see all event activity in the console:

eventSky.config.firehose = true

Registered Events

You can debug EventSky by checking the registered events and lifecycles via:

console.dir(eventSky.events)