- 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 Events
Node.js is built around an event-driven architecture, making it highly efficient for handling asynchronous tasks like I/O operations. The EventEmitter class allows for custom events to be created and handled in your applications. This is one of the core concepts that enables non-blocking, asynchronous execution in Node.js.
Key Features of Events in Node.js
- Event-Driven: Allows applications to react to certain events, such as user actions or data availability.
- Custom Events: You can create and emit custom events.
- Event Handling: Attach event listeners to react to emitted events.
- Asynchronous Execution: Ensures that the program does not block execution while waiting for events.
Using Events in Node.js
1. EventEmitter Class
The EventEmitter
class, provided by the events
module, allows for the creation and management of custom events.
Output:
2. Passing Arguments with Events
You can pass arguments when emitting events, which can be used by the event listeners.
Output:
3. Once Event Listener
The once
method ensures that the listener is invoked only once, after which it is removed.
Output:
4. Error Handling in Events
Node.js provides a special event for error handling. By default, unhandled errors will terminate the process, but you can handle them with the error
event.
Output:
5. EventEmitter Methods
Summary
The EventEmitter class in Node.js is crucial for building asynchronous, event-driven applications. By emitting and handling events, you can create highly responsive systems. The flexibility of custom events, error handling, and the once
method make it a powerful tool for building efficient applications in Node.js.