Friday, March 13, 2015

Re: A good React library for GWT

React is not only a javascript library, but a whole new web programming paradigm. It was developed by Facebook because of the performance needs of the facebook platform. The React paradigm is based on the principle that you abstract the DOM in a much smaller and simpler model of the web app page. This model is so much simpler that updating or processing it is much faster than updating directly the DOM. After you make all the updates at the abstract model, you can finally update the DOM in a single write. This increment performances up to 100x. Also you can have DOM updates frequencies with different refresh intervals for each component of the page. For example a button is updated immediately when pushed, but the connected list box can be updated each 2 or 3 seconds. React is widely considered to be the future of web development. You can take a look at some of the presentations video here: https://youtu.be/uZgAq1CZ1N8    and here:  https://youtu.be/IVvHPPcl2TM    and here:  https://youtu.be/1OeXsL5mr4g

I'm searching a library for GWT that implements the React paradigm. Can somebody help me?

Thanks in advance.


Il giorno giovedì 12 marzo 2015 18:31:21 UTC+1, Ignacio Baca Moreno-Torres ha scritto:
Sorry, I didn't know that React is a JS library. This has much more sense. :)

On Thursday, March 12, 2015 at 6:21:29 PM UTC+1, Ignacio Baca Moreno-Torres wrote:
I'm not sure if react library means anything :), is any library using an Observable pattern a react library? Is the jdk an object oriented library?

If you are looking for a data-binding library:
Editor framework using uiHandler is reactive (but not two-ways data binding)

But, if you are looking for http://reactivex.io/, I think there isn't anything simillar. I made some test to run RxJava in GWT (https://github.com/ibaca/rxjava-gwt/) you may try.

Finally, promises are kind of 'reactive commands', if your are looking for that you may tray GwtQuery or TurboGwt.

Or you can just use GWT programming reactive code ;).






On Thursday, March 12, 2015 at 2:40:53 PM UTC+1, Freemen Muaddib wrote:
Hi! I'm a web developer, and I'm searching a good React (or React-like) library for GWT.
Does anybody know one? Thx!

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment