Preview:
// Create

const { EventEmitter } = require('events');

const eventEmitter = new EventEmitter();



// Handle

eventEmitter.on('lunch', () => {



    console.log('yum 🍣');



});



// Emit

eventEmitter.emit('lunch');

eventEmitter.emit('lunch');



// yum 🍣

// yum 🍣
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter