Skip to content

cmmvio/cmmv-events

Repository files navigation

CMMV Logo

Contract-Model-Model-View (CMMV)
Building scalable and modular applications using contracts.

NPM Version Package License

DocumentationReport Issue

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.