That's a pretty broad question...any more details you can provide what you're trying to do? There are tons of articles out there comparing the different frameworks and even this website that houses them all: http://todomvc.com/
Certainly an important part of using a framework for me is that I don't have to instantiate and use that framework's code all over my logic (seriously ties your code to theirs). Angular is great in that data returned from their server can stay as plain json and can be used anywhere. Knockout, for example, you have to specifically create "observable" properties that wrap the data value to get two way binding. A lot of frameworks in the past made it easy to code badly but calling jquery DOM updates everywhere throughout your code (change class name, set width(), show/hide) etc....Angular removes all that with directives, a very powerful feature/component unlike any framework. DOM manipulation is very expensive and Angular handles all this for you and makes sure it performs it at the right times. On Thursday, January 2, 2014 1:25:47 AM UTC-5, Sami Dan wrote: > > Hi, > > I'm doing my masters in computer science and am looking for a research > topic on angular or on javascript application frameworks in general. Any > suggestions/recommendations would help. > > Thanks, > -- 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.
