View on GitHub

ReadingNotes

Event Driven Applications

Review, Research, and Discussion

Vocabulary Terms

Authorization :

Event-Driven Programming in Node.js

// Bind event and event handler as follows eventEmitter.on('eventName', eventHandler);

// Fire an event eventEmitter.emit('eventName');


Home