- Node.js Tutorial
- NodeJS Home
- NodeJS Introduction
- NodeJS Setup
- NodeJS First App
- NodeJS REPL
- NodeJS Command Line
- NodeJS NPM
- NodeJS Callbacks
- NodeJS Events
- NodeJS Event-Loop
- NodeJS Event-Emitter
- NodeJS Global-Objects
- NodeJS Console
- NodeJS Process
- NodeJS Buffers
- NodeJS Streams
- Node.js File Handling
- Node.js File System
- Node.js Read/Write File
- Working with folders in Node.js
- HTTP and Networking
- Node.js HTTP Module
- Anatomy of an HTTP Transaction
- Node.js MongoDB
- MongoDB Get Started
- MongoDB Create Database
- MongoDB Create Collection
- MongoDB Insert
- MongoDB Find
- MongoDB Query
- MongoDB Sort
- MongoDB Delete
- MongoDB Update
- MongoDB Limit
- MongoDB Join
- Node.js MySQL
- MySQL Get Started
- MySQL Create Database
- MySQL Create Table
- MySQL Insert Into
- MySQL Select From
- MySQL Where
- MySQL Order By
- MySQL Delete
- MySQL Update
- MySQL Join
- Node.js Modules
- Node.js Modules
- Node.js Built-in Modules
- Node.js Utility Modules
- Node.js Web Module
- Node.js Advanced
- Node.js Debugger
- Node.js Scaling Application
- Node.js Packaging
- Node.js Express Framework
- Node.js RESTFul API
- Node.js Useful Resources
- Node.js Useful Resources
- Node.js Discussion
Node.js Event Emitter
The EventEmitter class in Node.js provides a mechanism for handling events in a flexible and efficient way. It allows for the creation of custom events and handlers that are triggered when certain actions occur in an application. This makes it a crucial part of building scalable, event-driven applications.
Key Features of EventEmitter
- Custom Events: You can create and handle custom events using the
EventEmitter
class. - Event Listeners: Attach listeners (callback functions) that are called when the event is emitted.
- Asynchronous Behavior: Event handlers are called asynchronously, ensuring that the program does not block while waiting for events to be processed.
Using EventEmitter
To use the EventEmitter
, you need to import it from the events
module. Here’s an example of how to create and emit events:
1. Importing EventEmitter and Creating an Event
const EventEmitter = require('events');
const myEmitter = new EventEmitter();
// Define an event and its listener
myEmitter.on('event', () => {
console.log('An event has occurred!');
});
// Emit the event
myEmitter.emit('event');
Output:
An event has occurred!
- The
on()
method attaches a listener to an event. - The
emit()
method is used to trigger the event, which calls the associated listener.
2. Multiple Listeners for the Same Event
You can attach multiple listeners to the same event.
myEmitter.on('greet', () => {
console.log('Hello!');
});
myEmitter.on('greet', () => {
console.log('How are you?');
});
myEmitter.emit('greet');
Output:
Hello!
How are you?
- Both listeners are called when the
greet
event is emitted.
3. Listening Once with once()
You can use the once()
method to attach a listener that will only be executed once.
myEmitter.once('message', () => {
console.log('This will only run once!');
});
myEmitter.emit('message');
myEmitter.emit('message'); // This will not run again
Output:
This will only run once!
- The listener for the
message
event is executed only the first time it is emitted.
4. Handling Arguments in Events
Event listeners can also receive arguments passed with the emit()
method.
myEmitter.on('greet', (name) => {
console.log(`Hello, ${name}!`);
});
myEmitter.emit('greet', 'John');
Output:
Hello, John!
- The argument passed with
emit()
is received by the listener function.
5. Removing Event Listeners
You can remove event listeners using the removeListener()
or off()
method.
const greeting = () => {
console.log('This is a one-time greeting');
};
myEmitter.on('greet', greeting);
myEmitter.emit('greet');
myEmitter.removeListener('greet', greeting);
myEmitter.emit('greet'); // Will not run
Output:
This is a one-time greeting
- After calling
removeListener()
, the listener is removed and will no longer be triggered when the event is emitted.
Summary
The EventEmitter class in Node.js is a versatile and essential tool for building event-driven applications. It allows the creation of custom events, attaching multiple listeners, handling arguments, and controlling when listeners are triggered. Mastering EventEmitter helps in managing asynchronous workflows, ensuring that your Node.js application can efficiently handle and respond to different events.