Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@hapi/podium

Package Overview
Dependencies
Maintainers
7
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hapi/podium

Node compatible event emitter with extra features

  • 5.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
234K
decreased by-80.1%
Maintainers
7
Weekly downloads
 
Created

What is @hapi/podium?

@hapi/podium is an event emitter with support for multiple event channels, filters, and event arguments. It is designed to be a more powerful and flexible alternative to the built-in Node.js EventEmitter.

What are @hapi/podium's main functionalities?

Basic Event Emission

This feature allows you to emit and listen to events. The example demonstrates creating a Podium instance, registering an event listener, and emitting an event.

const Podium = require('@hapi/podium');
const podium = new Podium('event');
podium.on('event', (data) => {
  console.log(data);
});
podium.emit('event', { message: 'Hello, world!' });

Multiple Event Channels

This feature allows you to manage multiple event channels. The example shows how to create a Podium instance with multiple events and handle them separately.

const Podium = require('@hapi/podium');
const podium = new Podium(['event1', 'event2']);
podium.on('event1', (data) => {
  console.log('Event 1:', data);
});
podium.on('event2', (data) => {
  console.log('Event 2:', data);
});
podium.emit('event1', { message: 'Hello from event 1!' });
podium.emit('event2', { message: 'Hello from event 2!' });

Event Filters

This feature allows you to filter events based on custom criteria. The example demonstrates setting up a filter that only processes events of a specific type.

const Podium = require('@hapi/podium');
const podium = new Podium('event');
podium.on('event', { filter: (data) => data.type === 'type1' }, (data) => {
  console.log('Filtered event:', data);
});
podium.emit('event', { type: 'type1', message: 'This will be logged' });
podium.emit('event', { type: 'type2', message: 'This will not be logged' });

Event Arguments

This feature allows you to pass multiple arguments to event listeners. The example shows how to emit an event with multiple arguments and handle them in the listener.

const Podium = require('@hapi/podium');
const podium = new Podium('event');
podium.on('event', (arg1, arg2) => {
  console.log('Arguments:', arg1, arg2);
});
podium.emit('event', 'arg1', 'arg2');

Other packages similar to @hapi/podium

Keywords

FAQs

Package last updated on 11 Feb 2023

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc