DEV Community

Discussion on: React, Angular or Vue JS? Which do you prefer and why?

Collapse
 
bradtaniguchi profile image
Brad • Edited

React focuses primarily on the view and display the of data. This isn't a bad thing, its just a design decision so React focuses its efforts on a limited set of problems.

Angular takes a more opinionated approach on a lot of different topics, and provides more tools out of the box to solve issues you'd probably run into down the line. Its very possible you don't need or want TS support, reactive programming, dependency injection, server-side rendering, service workers, lazy-loading, or monorepo support on small/medium projects, but with Angular you get first party support for all of that.

Its very possible you don't plan to scale your code base to be that large, but Angular gives you tons of tools to help you if you do get to that point.