Courses
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.4K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.5K+ articles
School Learning
11.1K+ articles
JavaScript
9.9K+ articles
Node.js
3.0K+ articles
WebTech-FAQs
98+ articles
MERN-QnA
90+ articles
Node.js-events-module
12 posts
Recent Articles
Popular Articles
Event-Driven Architecture of NodeJS
Last Updated: 08 September 2025
NodeJS uses an event-driven architecture, which is a key part of how it handles many tasks at once without blocking. This approach relies on events, event emitters, and li...
read more
Web Technologies
Node.js
Node.js-events-module
MERN-QnA
WebTech-FAQs
Node.js Process disconnect Event
Last Updated: 28 April 2025
In this article, we will discuss about the disconnect event of the Process object. The disconnect event will be issued when the IPC channel is closed if the Node.js proces...
read more
Technical Scripter
Web Technologies
Picked
Node.js
Technical Scripter 2022
Node.js-events-module
Event Demultiplexer in Node.js
Last Updated: 31 January 2025
Node.js is designed to handle multiple tasks efficiently using asynchronous, non-blocking I/O operations. But how does it manage multiple operations without slowing down o...
read more
Web Technologies
Picked
Node.js
Geeks Premier League
Geeks-Premier-League-2022
Node.js-events-module
NodeJS-Questions
What is Callback Hell and How to Avoid it in NodeJS?
Last Updated: 09 September 2025
Callback hell in Node.js refers to the situation where multiple nested callbacks are used to handle asynchronous tasks, resulting in code that looks like a “pyramid of doo...
read more
Web Technologies
Picked
Node.js
Geeks Premier League
Geeks-Premier-League-2022
Node.js-fs-module
Node.js-events-module
NodeJS-Questions
Callbacks and Events in NodeJS
Last Updated: 26 August 2025
Callbacks and events are fundamental building blocks for asynchronous programming in NodeJS. They're important for handling operations that might take some time, ensuring ...
read more
Web Technologies
Picked
Node.js
Node.js-events-module
NodeJS-Questions
Node.js Http2Stream Response Event
Last Updated: 20 November 2020
The 'response' Event in the http2 server is emitted if a response HEADERS frame has been received for this stream from the connected HTTP/2 server.Syntax:Event: 'response'...
read more
Web Technologies
Node.js
Node.js-events-module
Node.js Http2Session stream Event
Last Updated: 18 November 2020
The 'stream' Event in http2 server is emitted when a new Http2Stream is created.Syntax:Event: 'stream'Parameters: This event does not accept any argument as a parameter.Re...
read more
Web Technologies
Node.js
Node.js-events-module
Node.js emitter.eventNames() Method
Last Updated: 13 August 2020
In Node.js, most of the core APIs are built near around an idiomatic asynchronous and event-driven architecture. EventEmitter class has instances that are emitted as event...
read more
Node.js
Node.js-events-module
Asynchronous Programming in NodeJS
Last Updated: 19 August 2025
Asynchronous programming in NodeJS allows tasks to run in the background without blocking execution, enabling efficient handling of multiple operations. It uses the event ...
read more
Web Technologies
Picked
Node.js
Node.js-Misc
Node.js-events-module
Node.js EventEmitter
Last Updated: 17 January 2026
The EventEmitter class in Node.js supports event-driven, asynchronous communication between objects.Provided by the core events module.Allows objects to emit and listen to...
read more
Web Technologies
Picked
Node.js
Node.js-Misc
Node.js-events-module
Promises in NodeJS
Last Updated: 13 September 2025
Promises are a way to handle asynchronous operations in NodeJS, providing a cleaner and more readable approach compared to callbacks. They represent the eventual completio...
read more
Web Technologies
Picked
Node.js
Node.js-events-module
Node.js Events
Last Updated: 12 July 2025
An event in NodeJS is an action or occurrence, such as a user click, a file being read, or a message being received, that NodeJS can respond to. Events are managed using t...
read more
Web Technologies
Picked
Node.js
Node.js-events-module