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

@cmmv/events

v0.0.3

Published

Events module for CMMV

Downloads

74

Readme

Description

The @cmmv/events module provides a simple and scalable event management system for applications built with the CMMV framework. By leveraging eventemitter2, it allows developers to create, emit, and listen to events across the application seamlessly.

Features

  • Event-Driven Architecture: Simplifies event-based communication between services, controllers, and other providers.
  • Decorator-Based API: Intuitive decorators like @OnEvent for binding event handlers.
  • Integration with CMMV Framework: Works seamlessly with CMMV modules and services.
  • Flexible Payloads: Supports any payload type with recommended use of TypeScript interfaces for type safety.

Installation

Install the @cmmv/events package via npm:

$ pnpm add @cmmv/events

Configuration

The @cmmv/events module does not require additional configuration. Simply include it in your application modules.

Setting Up the Application

In your index.ts, include the EventsModule and any custom modules using event listeners:

import { Application } from '@cmmv/core';
import { DefaultAdapter, DefaultHTTPModule } from '@cmmv/http';
import { EventsModule, EventsService } from '@cmmv/events';

import { ListernersModule } from './listeners.module';

Application.create({
    httpAdapter: DefaultAdapter,
    modules: [
        DefaultHTTPModule, 
        EventsModule, 
        ListernersModule
    ],
    services: [EventsService],
});

Creating Event Listeners

Use the @OnEvent decorator to bind a method to an event. Event listeners can be added to any service, controller, or gateway in your application.

import { Service } from '@cmmv/core';
import { OnEvent } from '@cmmv/events';
import { EventsService } from '@cmmv/events';

@Service("listener")
export class Listener {
    constructor(private readonly eventsService: EventsService) {}

    @OnEvent('hello-world')
    public async OnReceiveMessage(payload: any) {
        console.log('hello-world event received:', payload);
    }
}

Emitting Events

To emit an event, inject EventsService into your class and call the emit method:

this.eventsService.emit('event-name', { key: 'value' });

Decorators

@OnEvent(eventName: string)

Binds a method to listen for a specific event.

Best Practices

  • Use Interfaces for Payloads: Define TypeScript interfaces for event payloads to ensure consistency and type safety.
  • Group Related Events: Use event namespaces or prefixes to group related events (e.g., user.created, user.updated).

The @cmmv/events module simplifies event-based communication in your CMMV applications. Its intuitive decorator-based API and seamless integration make it a powerful tool for building scalable and modular event-driven applications.