My SO question is somehow related to this topic: http://stackoverflow.com/questions/21111217/react-compared-angular-directive-with-isolate-scope
For now I kind of have the same opinion you have Owen. I would say it depends on the size of the diff. Angular offers more things compared to React but I think React easier to reason about and learn. On Thursday, June 13, 2013 6:59:07 PM UTC+2, Owen M wrote: > > This is a good doc about what is going on under the hood in Angular: > http://docs.angularjs.org/guide/concepts > > Angular relies on the digest loop, comparing variables state, if they > change they update what is needed, and only what is needed. This could > trigger other updates, where the loop keeps doing its thing until > everything stabilizes. Kind of the same idea, but Angular is doing it in a > lot of little places, as apposed to what looks like one big page > comparison. My guess is similar results. > > On Thursday, 13 June 2013 07:16:36 UTC-7, Matt Kruse wrote: >> >> Facebook released their "React" framework recently, and it is has some >> things in common with Angular and other frameworks. It updates the UI based >> on a model, but apparently only does one-way data binding? >> Has anyone looked into React in any detail, and compared it to Angular? >> I know they may not solve the same exact problems, but in the area where >> they overlap, how do they compare? >> >> One interesting that they do is that when they updated the DOM, then do a >> diff between what it looks like now and what they want it to look like. >> Then they just apply the transformations needed to bring it into the >> correct state. >> How does this compare to Angular? >> And could Angular be enhanced to use this approach for DOM updates if it >> proves to be faster? >> >> Matt Kruse >> >> -- You received this message because you are subscribed to the Google Groups "AngularJS" 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/angular. For more options, visit https://groups.google.com/groups/opt_out.
