Loading...

Warning: Undefined array key "post_id" in /home/u795416191/domains/speqto.com/public_html/wp-content/themes/specto-fresh/single.php on line 22

Creating and Using Custom Events in Node.js

Jeevan Singh

27 October, 2025

Node.js Logo


Node.js is built around an event-driven architecture, which makes it incredibly efficient for handling asynchronous operations. Events are at the core of Node.js — they allow you to execute code when specific actions occur. While Node.js provides many built-in events (like request and connection), you can also create your own custom events to make your applications more modular and interactive.

What Are Events in Node.js?

An event in Node.js is a signal that something has happened in your application. For example, when a server receives a request, an event is triggered.
Node.js uses the EventEmitter class from the events module to handle such event-driven behavior.

Why Use Custom Events?

Custom events make your code cleaner, more organized, and easier to maintain. They are particularly useful when:

  • You want to separate logic between components.
  • You need to notify different parts of your app when an action occurs.
  • You’re working with asynchronous operations that depend on specific triggers.
  • You want to create modular, reusable systems that communicate via events.

The EventEmitter Class

The EventEmitter class in Node.js is the foundation for handling and creating custom events. It allows you to:

  • emit an event — trigger it.
  • on or addListener — listen for when the event occurs.
  • once — listen for the event only one time.
  • removeListener — stop listening to an event.

To use custom events, you first need to import this class and create an instance of it.

Example: Creating and Listening to a Custom Event

Here’s a simple example to demonstrate how to create and trigger your own event:

const EventEmitter = require('events');

// Create an instance of EventEmitter
const eventEmitter = new EventEmitter();

// Define a custom event
eventEmitter.on('greet', (name) => {
  console.log(`Hello, ${name}! Welcome to Node.js events.`);
});

// Trigger (emit) the custom event
eventEmitter.emit('greet', 'John');

In this example:

  • We created a custom event called greet.
  • We used on() to listen for the event.
  • We used emit() to trigger the event and pass data (“John”).

Using Multiple Listeners

You can also attach multiple listeners to the same event:

const EventEmitter = require('events');
const eventEmitter = new EventEmitter();

eventEmitter.on('status', () => console.log('Task started!'));
eventEmitter.on('status', () => console.log('Task in progress...'));
eventEmitter.on('status', () => console.log('Task completed!'));

eventEmitter.emit('status');

When emit('status') is called, all listeners attached to the status event are executed in order.

Using once() for One-Time Events

If you want an event listener to run only once, you can use the once() method:

const EventEmitter = require('events');
const eventEmitter = new EventEmitter();

eventEmitter.once('connect', () => {
  console.log('Connected successfully! This message appears only once.');
});

eventEmitter.emit('connect');
eventEmitter.emit('connect'); // Won’t run again

This is useful for tasks like initializing a database connection or logging one-time startup messages.

Passing Data with Events

You can pass any number of arguments to your event listeners via emit():

eventEmitter.on('order', (item, price) => {
  console.log(`Order placed for ${item} costing $${price}`);
});

eventEmitter.emit('order', 'Laptop', 1200);

This flexibility allows you to send relevant data dynamically whenever the event is triggered.

Removing Event Listeners

If you no longer need a listener, you can remove it using removeListener() or removeAllListeners():

const greet = (name) => console.log(`Hello, ${name}!`);
eventEmitter.on('greet', greet);

eventEmitter.removeListener('greet', greet);
eventEmitter.emit('greet', 'John'); // No output since listener removed

Real-World Example: File Upload Notification

Custom events are extremely useful in real-world applications. For example:

const EventEmitter = require('events');
const eventEmitter = new EventEmitter();

function uploadFile(filename) {
  console.log(`Uploading ${filename}...`);
  setTimeout(() => {
    eventEmitter.emit('uploadSuccess', filename);
  }, 2000);
}

eventEmitter.on('uploadSuccess', (file) => {
  console.log(`File "${file}" uploaded successfully!`);
});

uploadFile('profile-picture.png');

Here, the uploadFile() function triggers a custom event after the simulated upload completes, and another part of the app listens for that event to perform follow-up actions.

Conclusion

Custom events make Node.js applications more modular, scalable, and easier to manage. By using the EventEmitter class, you can define custom triggers and listeners that communicate between different parts of your app seamlessly.
Whether you’re building APIs, file systems, or chat applications, mastering custom events is an essential step toward writing cleaner and more efficient Node.js code.

RECENT POSTS

Beyond the Battlefield: Architecting Your Web App with Optimal SSR or CSR Rendering

Beyond the Battlefield: Architecting Your Web App with Optimal SSR or CSR Rendering Gaurav Garg 06 March 2026 In the dynamic landscape of web development, a fundamental architectural decision often dictates the success and user experience of a web application: the choice between Server-Side Rendering (SSR) and Client-Side Rendering (CSR). This isn’t merely a technical […]

How IT Companies Can Win Global Clients in 2026

How IT Companies Can Win Global Clients in 2026   Chirag Verma 06/03/2026 In 2026, the global technology market is more competitive and opportunity-rich than ever before. Businesses across industries are searching for reliable IT partners who can help them innovate, scale, and stay ahead in an increasingly digital world. For IT companies, winning global […]

The Human Side of AI: How HR Leaders Will Shape the Future of Work in 2026

The Human Side of AI: How HR Leaders Will Shape the Future of Work in 2026 Khushi Kaushik 06 march, 2026 Introduction As we step into 2026, the workplace is evolving faster than ever before. Artificial Intelligence, automation, remote work, and digital collaboration tools are transforming how organizations operate. But amid all this innovation, one […]

Socket.IO Security Unveiled: Mastering Authentication & Authorization for Robust Real-time Applications

Socket.IO Security Unveiled: Mastering Authentication & Authorization for Robust Real-time Applications Divya Pal 4 February, 2026 In the dynamic landscape of modern web development, real-time applications have become indispensable, powering everything from chat platforms to collaborative editing tools. At the heart of many of these interactive experiences lies Socket.IO, a powerful library enabling low-latency, bidirectional […]

Prisma ORM in Production: Architecting for Elite Performance and Seamless Scalability

Prisma ORM in Production: Architecting for Elite Performance and Seamless Scalability Shubham Anand 16 February 2026 In the rapidly evolving landscape of web development, database interaction stands as a critical pillar. For many modern applications, Prisma ORM has emerged as a powerful, type-safe, and intuitive tool for interacting with databases. However, transitioning from development to […]

POPULAR TAG

POPULAR CATEGORIES