You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@janiscommerce/events

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@janiscommerce/events

A package to handle Janis Events

0.2.0
latest
Source
npmnpm
Version published
Weekly downloads
524
18.82%
Maintainers
1
Weekly downloads
 
Created
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

Package last updated on 20 Dec 2022

Did you know?

Socket

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