Socket
Socket
Sign inDemoInstall

@janiscommerce/events

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @janiscommerce/events

A package to handle Janis Events


Version published
Weekly downloads
561
decreased by-1.41%
Maintainers
1
Install size
5.41 kB
Created
Weekly downloads
 

Changelog

Source

[0.2.0] - 2022-12-20

Added

  • support for async callbacks
  • off() methods to remove listeners of an event

Changed

  • Not using node events module anymore

Readme

Source

events

Build Status Coverage Status npm version

A simple package to Emit and Listen events in Janis Services.

async/await

Important: Since 0.2.0 async callbacks are allowed, on() and once() accepts async functions and emit() will wait when await is used.

Emit

You can easily emit a new event using the static method async emit(eventName, ...args).

'use strict';

const Events = require('@janiscommerce/events');

await Events.emit('some-random-event', 'foo', 'bar');

Listen every time

To create listener for an event you should call the static method on(eventName, callback).

The callback will be called every time the event was emitted.

'use strict';

const Events = require('@janiscommerce/events');

Events.on('some-random-event', async (...args) => {
	// do some serious stuff with the args
});

Listen one time only

To create listener that is only called once should register the listener with the static method once(eventName, callback).

The callback will be called only the first time the event was emitted.

'use strict';

const Events = require('@janiscommerce/events');

Events.once('one-time-event', async (...args) => {
	// do some serious stuff with the args
});

Remove listeners

To remove listener of an event previously registered you should use the static method off(eventName).

This will remove all listeners (clean all callbacks): registered with on() or once()

'use strict';

const Events = require('@janiscommerce/events');

Events.on('my-event', async () => {
	console.log('my-event occurred!!!')
});

Events.once('my-event', async () => {
	console.log('my-event occurred for the first time!!!')
});

await Event.emit('my-event');
// expected output: my-event occurred!!!
// expected output: my-event occurred for the first time!!!

await Event.emit('my-event');
// expected output: my-event occurred!!!

Events.off('my-event');

await Event.emit('my-event'); // no output expected

Remove all listeners

To remove all listener registered you should use the static method off().

'use strict';

const Events = require('@janiscommerce/events');

Events.on('my-event', async () => {
	console.log('my-event occurred!!!')
});

Events.once('my-other-event', async () => {
	console.log('my-other-event occurred for the first time!!!')
});

await Event.emit('my-event');
// expected output: my-event occurred!!!
await Event.emit('my-event-event');
// expected output: my-other-event occurred for the first time!!!

Events.off();

await Event.emit('my-event'); // no output expected
await Event.emit('my-event-event'); // no output expected

FAQs

Last updated on 20 Dec 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc