June 2014
Intermediate to advanced
696 pages
38h 52m
English
In the following chapters, you have opportunities to implement a lot of the events that are built into the various Node.js modules. This section focuses on creating your own custom events as well as implementing listener callbacks that are implemented when an event is emitted.
Events are emitted using an EventEmitter object. This object is included in the events module. The emit(eventName, [args]) function triggers the eventName event and includes any arguments provided. The following code snippet shows how to implement a simple event emitter:
var events = require('events');var emitter = new events.EventEmitter();emitter.emit("simpleEvent"); ...
Read now
Unlock full access