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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@crdsyntax/nest-event

v1.2.0

Published

generate event emitter for nestjs typeorm mariadb

Readme

🛠️ Script: generate-event.js

Este script genera automáticamente archivos de eventos y listeners en un módulo de NestJS, a partir de la definición de una entidad (.entity.ts).

Está orientado a proyectos que usan NestJS + TypeORM + EventEmitter, donde se desea estandarizar la creación de eventos (event) y listeners (listener) asociados a una entidad específica dentro de un módulo.


🚀 ¿Qué hace?

  1. Crea carpetas event/ y listener/ dentro del módulo si no existen.

  2. Lee la entidad ubicada en: src//entities/.entity.ts

  3. Extrae las propiedades de la entidad (@Column, @PrimaryGeneratedColumn) para incluirlas en la clase Create<Entity>Event.

  4. Genera automáticamente:

  • Un archivo de eventos en event/<entidad>.event.ts
  • Un archivo de listener en listener/<entidad>.listener.ts

📦 Archivos generados

Ejemplo: user

  • event/user.event.ts
export const USER_EVENTS = {
  SINGLE_CREATE: "user:single.create",
  BATCH_CREATE: "user:batch.create",
} as const;

export type UserEventType = (typeof USER_EVENTS)[keyof typeof USER_EVENTS];

export class CreateUserEvent {
  constructor(
    public readonly id: number,
    public readonly name: string
  ) // ...otros campos de la entidad
  {}
}
@Injectable()
export class UserListener {
  private readonly logger = new Logger(User.name);

  constructor(
    @InjectRepository(User)
    private readonly userRepository: Repository<User>
  ) {}

  @OnEvent(USER_EVENTS.SINGLE_CREATE)
  async handleSingleCreateEvent(event: CreateUserEvent) {
    const entity = this.userRepository.create(event);
    await this.userRepository.save(entity);
    this.logger.log("🔔 Single create event procesado:", entity);
  }

  @OnEvent(USER_EVENTS.BATCH_CREATE)
  async handleBatchCreateEvent(events: CreateUserEvent[]) {
    for (const event of events) {
      const entity = this.userRepository.create(event);
      await this.userRepository.save(entity);
      this.logger.log("🔔 Batch create event procesado:", entity);
    }
  }
}

⚡ Uso:

node scripts/generate-event.js [entidad]

Argumentos:

(obligatorio) → nombre del módulo en src/

[entidad] (opcional) → nombre específico de la entidad dentro del módulo.

Si no se especifica, se toma el mismo nombre que el módulo.

Ejemplos:

Usar el módulo como entidad:

node scripts/generate-event.js booking

Busca: src/booking/entities/booking.entity.ts

Usar una entidad distinta dentro del módulo:

node scripts/generate-event.js booking booking-product

REQUISITOS DE ESTRUCTURA:

src/ / entities/ .entity.tsn