Yeah okay. Then why does nobody use it? Even languages like Elm ditched it for easier to understand concepts. Let's face it. FRP kinda sucks. It's awkward as hell to use and takes way to many brain-cells to achieve simple results. Even the experts have trouble with it. I remember e-mailing the author of a popular FRP library once asking him how I could get multiple shapes moving on the screen at once (as opposed to j…
Isn't Redux FRP? You can easily do the basics in React as well. I would say it's the dominant paradigm in UI development and most don't know they're using it.
In Redux one explicitly, imperatively sends messages to a top-level message dispatcher, which then invokes more imperative code.
This feels /very/ different to Reflex's folding over events, and transforming dynamic values with pure functions.
The API you use is pretty different as well; consider:
* https://github.com/reflex-frp/reflex/blob/develop/Quickref.m...
* https://github.com/reflex-frp/reflex-dom/blob/develop/Quickr...