이벤트 생성 후 사용하기import {Emitter} from 'event-kit'; // emitter 클래스 생성 const emitter = new Emitter(); emitter.on('create-event',()=>{ // 이벤트 실행시 취할 액션 console.log('call create-event'); }); emitter.emit('create-event'); // call create-event