Author: Anva Kondakciu

For someone deciding whether to learn Angular or React first, most articles and videos will point to React due to its popularity, performance, and simple API.

My first experience with these frameworks was using Angular at an internship. At the time, I did research to see which tool was “better”. My biggest takeaways were:

  • React is a walk in the park. You could probably teach your cat how to build powerful React applications, and they’d master it in a week. It just doesn’t get easier than React.
  • Angular is a terrifyingly opinionated framework with a steep learning curve. This framework is insanely large, but that’s only because it was designed to be robust enough that you can build just about anything without needing third-party dependencies.

Admittedly, most of the research I had done about Angular was true. Unlike un-opinionated tools like React, Angular has a specific way of modularizing and structuring its code. This involves dependency injection, reusable services, TypeScript, and more.

Starting with Angular meant learning the basic functionalities of an entire framework, unlike frontend tools like React, where the learning curve is focused on the view layer.

After two years of using Angular for personal projects and company deliverables, I became familiar with designing code compliant with Angular’s “opinions”.

Eventually, I was assigned to work on React projects. Moving from Angular to React meant knowing what skills (like thinking in component-based architecture) I could transfer to React, knowing what skills were strictly under the scope of Angular, and realizing React is not so simple your cat can master it in a week.

Understanding the Basics – What are Angular and React?

Many argue that React and Angular cannot be compared due to their differences.

Angular is a full-fledged framework, while React is a JavaScript library for UI development that can be an all-encompassing front-end tool through third-party libraries.

However, both tools have distinct advantages and provide powerful front-end solutions for similar use cases.

What is Angular?

  • Angular was created and is actively supported by Google and a community of individual developers and corporations.
  • When building app components, Angular uses TypeScript/HTML syntax.
  • Angular supports two-way data binding, allowing write events to go back and forth between the controller and the view.
  • Angular is a powerful framework that maintains enterprise applications without third-party module support.

What is React?

  • React was created and is actively supported by Meta and a community of individual developers and corporations.
  • React uses JavaScript ES6 and JSX to build app components.
    • JSX allows you to write HTML directly in JavaScript code and place them in the DOM without needing methods like createElement().
  • React follows a unidirectional data flow architecture where data can only be transferred from parent to child, not vice versa.
  • React uses its virtual DOM to find the minimum set of changes to send to the real DOM.

Angular vs. React

Takeaways

Now that we went over the basics, I wanted to break down my top 5 biggest takeaways after switching from Angular to React.

1. Learning Curve

When it comes to learning Angular, the term “learning curve” might be too generous. Being the powerful, all-encompassing framework that it is, Angular comes with a learning cliff.

From the Angular CLI to observables, templates, dependency injections, and dynamic rendering, Angular’s built-in features teach you the Angular-opinionated way to build speedy and scalable apps.

TypeScript was the cherry on top. It’s hard not to feel like TypeScript combined with Angular is a totally new programming language.

But what’s it like moving to React once you’ve internalized this pattern daily? It would be intuitive if I had to pick one word to describe React’s learning curve.

If you have experience with JavaScript ES6, React will come with a relatively quick learning curve. If you have experience with both JavaScript ES6 and a frontend framework with component-based architecture (like Angular), React’s learning curve is even quicker.

Being familiar with ES6 and component-based architecture, I didn’t need to spend too much time on it. State management tools like React-Redux and Redux’s architectural pattern took up a large part of my learning journey. I go into detail about this experience in Takeaway 3.

2. Third-Party Flexibility

When you’re working with a full-fledged framework like Angular, you may be familiar with using in-house tools to do most of your work.

On the other hand, React is a simple library based on JavaScript ES6. Because its library has such a simple API, it requires a handful of third-party modules to manage a large-scale application.  While React easily integrates with third-party libraries, Angular is better suited for those that are specifically looking for a structured framework with built-in functionality.

3. State Management

Personally, I had never had the experience of using state management tools before learning React. One of the greatest learning curves I experienced in React was navigating and using the Redux store. Think of state management tools as a cache of data on which you can perform some CRUD operations.

Some Angular developers incorporate state management tools like NgRx in their applications. These tools follow a Redux-like pattern to provide a single source of truth for the app data with unidirectional data flow and exposed actions for accessing and making state changes. They’re also great for avoiding redundant API calls (if designed well). NgRx takes a lot of inspiration from the Redux library.

While there’s a decent chance that an Angular developer does not have experience with the NgRx framework or other state management tools, that same Angular developer transitioning to React (especially for an extensive application) will have a high chance of working with React-Redux. This isn’t as common in Angular because Angular is a complete framework that offers built-in tools to handle many of Redux’s use cases.

Redux Use Cases

  • A great use case of Redux is to avoid prop drilling. Prop drilling is when you pass data through several child components for it to reach a nested child component.
    • By maintaining a data store that multiple components can subscribe to, tools like React-Redux and React-Context help React developers avoid prop drilling.
    • However, prop drilling isn’t a problem for Angular because the framework uses shared services to communicate between components.
  • Another important use case of Redux is that it keeps subscribers updated when the store state changes.

Why doesn’t this use case matter to Angular? State in Angular apps is commonly managed through the observable service with a behavior subject approach. Services can access the data; anything in the app subscribed to the stream will always receive the latest data.

Why is NgRx necessary for Angular?

Managing your data with services and subjects alone can become a complicated mess as your app scales. Additionally, opinions between team members on how the data is managed can clash. A state management tool like NgRx is beneficial for a team environment as everyone can understand the pattern to manage the state. NgRx-based applications follow a structured and unidirectional approach, maintaining a single source of truth for the application state.

4. Virtual DOM vs. Change Detection Tree

React uses a Virtual DOM (a logic tree that happens to be an exact copy of the real DOM), generating a new version of it on each state change and comparing the new version of the Virtual DOM with the old one. It then renders only the changes detected in the diff to the real DOM.

Because React sends updates to the DOM in batches rather than updating the DOM after each state change, performance is significantly increased.

Angular uses the real DOM, but does this mean that Angular is slower than React? Not exactly. While Angular doesn’t have its own virtual DOM, it does have a Change Detection Tree that helps the framework check whether the DOM needs to be updated with the new state. The DOM will only be updated if a model’s particular property has been changed.

5. Unidirectional Data Flow vs. Two-Way Binding

Data Binding Chart

While React follows a one-way data flow, Angular allows for two-way data binding. With two-way data binding, changes to the data impact the view, and changes to the view trigger updates to the data.

I used to love two-way data binding for its flexibility of allowing write events to go back and forth between the controller and the view. In most cases, you have one piece of state in the controller and one piece of state in the view (ex: on a textbox). When one piece of the state changes, the other piece of state automatically updates to that same value. This can make debugging complex applications pretty time-consuming because it’s harder to isolate the bug when there’s no defined start point for the reaction chain.

After debugging with two-way data binding, working with one-way data binding felt like a breath of fresh air. The view always gets its data from the model, and you can only update the view by updating the model first. With React-Redux, you can dispatch actions to update the state. Because of the unidirectional data flow, it’s easier to detect changes and spot what caused the changes.

Conclusion 

Now comes the age-old question. Which tool is better- React or Angular?

I’ll cut to the chase and answer that with:

“You must not declare any winner, because there is none! This is not a war, this is just one of the most fruitful times to build web applications, with lots of great tools out there.”

Source: “React is better than Angular” and other nonsense 🌈  

Having worked with both tools, I wholeheartedly agree with this quote. Every goal of a library or framework should be to make a developer’s life easier.

However, if you forced me to choose one to use for the rest of my life, I’d go with React (in a heartbeat). Here’s why.

  • React has a simple learning curve and a flexible library that can be easily integrated with third-party modules.
  • Because React is so lightweight, it’s also quite preferable for smaller personal projects.
  • I admire unidirectional data flow over two-way data binding for its stability and simplicity when debugging.

Of course, everyone’s experience switching from Angular to React will not be the same. If you’re starting your React journey, I hope this article gave you a good breakdown of what to expect! 😊

Subscribe for Updates

Top 5 Reasons Why You Should Subscribe

  • #1

    Stay up-to-date on industry news and trends

  • #2

    Learn about claims management best practices

  • #3

    Gain insights into customer behavior and preferences

  • #4

    Discover new technologies and innovations

  • #5

    Engage with a community of industry professionals

STREAMLINE

Appraisals

Reduce cycle time and improve appraisal accuracy

SIMPLIFY

Claims

Claims management with our modular, end-to-end solutions

SCALE

Payments

Deliver payments effortlessly with automated tools and no-code workflows