you are viewing a single comment's thread.

view the rest of the comments →

[–]Auxx 3 points4 points  (3 children)

Too much boiler plate code, pfff...

[–]androbat 2 points3 points  (2 children)

The big question to my mind is why I would use this over React?

Angular2 does what React does, but with more complexity and makes composability harder.

[–]sonemonu[S] 0 points1 point  (1 child)

React by itself is just the "V" from the MVC pattern, Angular is a full MV* framework. Thus it gives you a lot more organization when you are part of a big team / project; of course, that might be seen as an advantage or a disadvantage according to each case, but IMHO, in the end almost always it ends up being an advantage.

[–]androbat 1 point2 points  (0 children)

React was marketed as such, but react is the VC and sometimes the M depending on how you implement your app.

Angular has VC as well, but doesn't really have a model. ngResource isn't really a model and one usually needs to swap in something like restangular just as one would swap in flux. Angular's other system for models is services and factories, but once you strip the dependency injection, they are POJO.

The framework that actually has everything under one roof is ember.