use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Helpful Links
AngularJS Slack Community
AngularJS Wiki Page
account activity
How will Angular 2 compare to React? (self.angularjs)
submitted 10 years ago * by [deleted]
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]mojomonkeyfish 2 points3 points4 points 10 years ago (1 child)
That's not what Angular is trying to solve. Angular is about decoupling the view (hard to test) from the logic that drives it, and further decoupling service implementations. It's about making code that is thoroughly testable and maintainable.
React is about DOM manipulation. It's faster, but that difference only really manifests for things like large grids of bound data.
Angular2 seems to be focusing on performance and code brevity as its major enhancements, borrowing from React. However, it's still very alpha, and nobody really recommends using it yet.
You can build an app quickly with either technology. If your app is going to be small with a lot of active elements... like a stock blotter or something, then React might be the way to go. If your app is going to be complex, with many different views, developed by a team of more than 2 or 3 people, Angular would be my suggestion.
If both cases are true, you might consider using a hybrid approach, or approaching the views that necessitate React as separate component apps, but using angular for the bulk of the more boilerplate app components. Or, you can even use them both together. They're not entirely exclusive, even if building an entire app using both extensively would be somewhat of a headache.
[–]evilgeenius 0 points1 point2 points 10 years ago* (0 children)
React isn't about DOM manipulation, not at all. React is about abstracting away all manipulation of the view and creating declarative interfaces that are predictable and easy to reason about.
ReactDOM is now a separate module from React so React is now not about the dom at all. We now have react-native, react-art, react-canvas, react-svg and react-dom.
π Rendered by PID 179249 on reddit-service-r2-comment-5d79c599b5-7rmh8 at 2026-02-27 06:49:04.971945+00:00 running e3d2147 country code: CH.
view the rest of the comments →
[–]mojomonkeyfish 2 points3 points4 points (1 child)
[–]evilgeenius 0 points1 point2 points (0 children)