https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent.CustomEvent
$ npm install custom-eventvarCustomEvent=require('custom-event');// add an appropriate event listenertarget.addEventListener('cat',function(e){process(e.detail)});// create and dispatch the eventvarevent=newCustomEvent('cat',{detail: {hazcheeseburger: true}});target.dispatchEvent(event);