On Friday, November 28, 2014 9:43:16 PM UTC+3, nuryoku san wrote: > If you want to get adventurous... take a step further back and take a look at > FRP and Elm. The examples show incredible terse and readable(?) code. Elm > might be a light ahead that shines for clojure ui-programming too, but ... as > always nothing really good comes for free.
I don't think FRP and virtual-dom based frameworks are mutually exclusive approaches to building front-ends. React (or any stand-alone implementation of a virtual-dom) is perfectly combinable with FRP. Just keep your app's state in one place, update it using your FR logic, use v-dom to rerender everything when state changes. I consider this combination a much better approach for a system with a lot of asynchronous client-side logic. But talking about ClojureScript there is no need for FRP because core.async is much easier to learn and reason about. -- Note that posts from new members are moderated - please be patient with your first post. --- You received this message because you are subscribed to the Google Groups "ClojureScript" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/clojurescript.
