Replies: 2 comments 7 replies
-
found even solid-rx is deprecated :( didn't know the reason. |
Beta Was this translation helpful? Give feedback.
5 replies
-
@ryansolid could we enhance Or provide a new api |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In reactive world, things like solid/mobx are great model base on state and state changes. But for some problems, it would be better to model with events/streams and composition and handling of them.
Previous days I use solid state to mimic events, but feel limited. For example, if I have a signal
lastUpdatedAt
for a timestamp, I use an effect to log it, but if user uses batch to update many items, the signal will only fire once, thus losing logs.I want to know if there is practice to combine solid with events/streams mechanism.
Beta Was this translation helpful? Give feedback.
All reactions