What are Event Emitters in Node.js

#nodejs#concept#async

Event Emitters is a class that can be used to emit named events and register listeners for those events. It is used to handle asynchronous events in Node.js.

---