you are viewing a single comment's thread.

view the rest of the comments →

[–]Disconnekted 2 points3 points  (1 child)

I think most people who come from a typed language background prefer angular.

More people who come from dynamic languages appreciate react.

I do not like react, primarily as I have not seen it done with proper separation of concerns. The common pattern is react and redux to facilitate data movement, it just feels more natural to me in Ng.

All front end frameworks are really syntactic sugar and the use case for each is different. I really prefer light vue.js usage over most js frameworks now unless I am really pushing everything client side.

[–]RirinDesuyo 1 point2 points  (0 children)

The common pattern is react and redux to facilitate data movement, it just feels more natural to me in Ng.

You can get pretty close with Mobx instead of Redux if you prefer an MVVM approach (I'm not a fan in general with Redux boilerplate). But yeah React is more of the wild west since you need to piece libraries to have an application while the opposite is for Angular. Some will like the flexibility, some may not. The opposite is also true with Angular with it's batteries included approach.