diff --git a/content/roadmaps/107-nodejs/content/104-nodejs-async-programming/101-event-emitter.md b/content/roadmaps/107-nodejs/content/104-nodejs-async-programming/101-event-emitter.md index 8cac7ce31..3ef5f3ac2 100644 --- a/content/roadmaps/107-nodejs/content/104-nodejs-async-programming/101-event-emitter.md +++ b/content/roadmaps/107-nodejs/content/104-nodejs-async-programming/101-event-emitter.md @@ -1 +1,7 @@ -# Event emitter \ No newline at end of file +# Event Emitter + +In Node.js, an event can be described simply as a string with a corresponding callback. An event can be "emitted" (or, in other words, the corresponding callback be called) multiple times or you can choose to only listen for the first time it is emitted. + +Free Content +What are Event Emitters? +Using Event Emitters in Node.js