@heapwolf Ha ha, are we going to get another wave of rxjs type hype? Personally I loved that era.
@mauve seems possible. I guess I’m going to have to code read an implementation of signals to find out if it’s just an event emitter, there are 100000 tuts on how to use them, and none of them say specifically how signals work 😅
@mauve @heapwolf I recently wanted to make a PoC of an idea and I wrote my own minimal jQuery for the front and express router for the back. Zero dependencies, lots of joy. https://github.com/naugtur/timely-tutor
@thisismissem @mauve what’s the difference between an observable and an event emitter?
@heapwolf @thisismissem I see event emitter as being similar to an EventTarget in that it's a bag of events and the thing is a bit more central. I think observables feel more lightweight like a single variable and is easier for them to be passed around as variables and combined
@heapwolf @thisismissem I assume this current wave is a reaction to React's useHook API, and a thing that ropes things into one place again (like redux and "stores"
@thisismissem @mauve that definitely clear to me now, thank you! :) it would be cool to see someone write a post on this pattern, it seems pretty simple, like you don’t really need a library for it.
@mauve no I mean “reactive signals”, it’s a trendy new front end pattern