Live data from Hacker News

Show HN: Fancy Emitter, a Fresh Take on Node.js's Event Emitter

github.com

1–4 of 4 posts

Re: Show HN: Fancy Emitter, a Fresh Take on Node.js's Event Emitter

#2
I prefer TypeScript over plain JS and would like a strongly typed way for dealing with event emitters.

So, I created fancy-emitter. I figured there are many other improvements which could have been made to the events module so I tried to make use of all of them and make the underlying JS engine deal with the scheduling.

Re: Show HN: Fancy Emitter, a Fresh Take on Node.js's Event Emitter

#3
post #2

I prefer TypeScript over plain JS and would like a strongly typed way for dealing with event emitters. So, I created fancy-emitter. I figured there are many other improvements which could have been made to the events module so I tried to make use of all of them and make the underlying JS engine deal with the scheduling.

Really loved it from first glance. I wanted something similar when I was debugging an odd problem from events last year.

Re: Show HN: Fancy Emitter, a Fresh Take on Node.js's Event Emitter

#4
post #2

I prefer TypeScript over plain JS and would like a strongly typed way for dealing with event emitters. So, I created fancy-emitter. I figured there are many other improvements which could have been made to the events module so I tried to make use of all of them and make the underlying JS engine deal with the scheduling.

Really loved it from first glance. I wanted something similar when I was debugging an odd problem from events last year.

Thanks, hope it helps next time you need to debug.