DEV Community

Discussion on: Using Events In Node.js The Right Way

Collapse
 
chenge profile image
chenge

May I ask a question, how do I fire a event?

Collapse
 
usamaashraf profile image
Usama Ashraf

Hey chenge, firing is just another word for "emitting".

Collapse
 
chenge profile image
chenge

Hi Usama thanks. But sendEmailOnRegistration doesn't work, why?

user = {};
myEmitter.emit('user-registered', user);

myEmitter.on('user-registered', (user) => {
  console.log("listened...");
});

myEmitter.on('user-registered', sendEmailOnRegistration);



Thread Thread
 
chenge profile image
chenge

I see. I must subscribe first.