React vs Angular compare - header image

React vs Angular 2 – compare the incomparable?

React vs Angular compare - header image

For the last two months I have been familiarising myself with React, which was the most popular technology in 2015.

Some said that 2016 would be the year of Angular 2 – a completely rewritten, very popular JavaScript framework from Google. Previously, on my own blog, I showed you what’s new in Angular 2 so, if you are new to it, you may want to check that post first.

Today, as I find these two technologies similar in some ways, I have decided to compare them.

TL;DR:
As Angular 2 is strictly opinionated and the authors advise using things like ES6 syntax. I will compare it with the most modern way of using React (e.g. combined with Babel for ES6 syntax and using JSX syntax for templates).

In my comparison, I will try to show the main similarities and differences between them and will leave the decision on which one is better entirely to you.

Compare React and Angular 2 – possible?

Good question! Many may say: “ReactJS is just a library and Angular 2 is a comprehensive framework! You can’t compare the two…”. I completely agree.

But let’s be stubborn and go with the comparison anyway.   If we still want to make a comparison, we will have to make two choices:

  • we can either take React and compare all of its elements to the appropriate elements of Angular2 or
  • we can compare Angular 2 as a framework with the whole ReactJS “ecosystem” – because when you create a React application you will most likely use such libraries as react-routerRedux, etc.

Well, I decided I prefer the second option and so will try to follow this path today.

Component model

Ok, let’s start our comparison with the most important and obvious part. Both ReactJS and Angular 2 are based on the same concept: building an app using small pieces called components. Here’s how it’s usually done in ReactJS:

https://gist.github.com/burczu/b1a08570b723d4adc676#file-react-component-js

Now, let’s look at a very similar component in Angular 2:

https://gist.github.com/burczu/195934e1bbe5de782e50#file-angular-component-js

s you can see above, in both cases a component is just a JavaScript class (we use ES6 syntax – I will write about that later).

The main difference here is that in React we have to extend a base Component and in Angular 2 we have to use a decorator @Component.  This is something which might make creating a component more difficult in Angular 2.

In React you just have to create a component and use it in other components as if it was an HTML element (thanks to JSX syntax – again, I will write about that later).

In contrast, in Angular 2 you have to make a placeholder in an HTML template and then inform the component where it should be injected (using the selector property of the decorator).

Another difference we can see here is that in Angular, we use templates as separate files as it was in the previous version of the framework (we can also declare a template as a string just like, for example, in directives in Angular 1).

In contrast, with React we just declare the template of the component inline in the JavaScript code using the JSX syntax.

Let’s stop here for the moment. Some say that separating templates and JavaScript code is better because we can achieve a separation of concerns this way.

Others disagree and say that separation of concerns is accomplished by the whole component itself. I personally have some background in Angular when I started my journey with React. So at first I tended to consider React components too coupled as they mixed JS and template codes in one file.

Now I have some doubts… I think I should wait for the final version of Angular 2 and do some projects with it before I can be really certain which way is better.

Templates and data binding

Ok, now that we know something about the components, we can talk more about the templates in both technologies.

As I mentioned before, in React we declare templates inline in the render method of the component class. This is possible because of the use of JSX syntax.

We don’t have to use it – we can write everything in pure JavaScript but this is the most streamlined way of using React and the most suitable approach to be compared with Angular 2.

JSX syntax allows you to assemble the components’ template from the other components and the HTML elements in an XML-like way. The effect is very similar to a pure HTML template.

The JSX template becomes part of React’s Virtual DOM which is the best element in the library – when React starts rendering components in the browser, it takes all of the components first and builds an in-memory (virtual) representation of the DOM tree.

Then, on top of that, React reconciles a real DOM tree and sends it to the screen.

Because of that, reacting to any UI change is really efficient because every time React re-renders the component it has to compare the Virtual DOM with the real one and change only the parts of the real DOM which are different.

On the contrary, in Angular 2 we still have templates as separate HTML files. These templates are rendered in a regular way and every change in the UI is made just by the DOM manipulations.

When we talk about DOM manipulations, we shouldn’t forget about data binding – this is also different. In Angular 2 we still have a two-way data binding which you can remember from the previous versions of the framework.

This means that our templates may look like this, in the example below:

https://gist.github.com/burczu/8aa3916f8d198dfac1ec#file-angular-template-html

So first of all, have a look at line number 2. The message is a property of a component object . Its value is bound to the div element using double curly braces – this way we can achieve a one-way data binding which means that in this place we can see only the actual value of the property.

In line number 4 we have the same property bound to the input element using two-way data binding (thanks to the [(ngModel)] attribute) – when we change the value of the input the value of the property will be changed too. This is the power of the two-way data binding.

The main disadvantage of this approach is that we end up with a template full of strange custom attributes which looks even more weird than in the previous versions of the Angular framework.

How is it done in React?

Ok, so how is it done in React? Well, first of all, we don’t have two-way data binding here – we only show the actual state of the model. Let’s conjure up the component’s render method from the first example:

https://gist.github.com/burczu/65ca4286313c2ed30eec#file-react-template-js

As you can see in line number 4, to bind the data we use single curly braces. You may also notice that we bind to the message property of the state object.

This is important because  the value of the property changes every time (we should always do this using the setState method of the base component class), React re-invokes the render method of the component.

This causes a change in the Virtual DOM stored in the memory which is then compared to the real DOM and, if it differs, the change is applied.

Sounds very simple. And it is. The main disadvantage of this approach is that nothing happens “automagically” here – we have to write more code than in two-way data binding because we have to change the state manually.

ECMAScript 6

Both ReactJS and Angular 2 support the modern syntax of ES6/ES2015 – as I wrote before, a component in both technologies is just a class.

But there is a difference – with ReactJS we usually use Babel to transpile ES6/ES2015 code into its ES5 counterpart.

In Angular 2 we are advised to use TypeScript which, apart from the ES6 syntax, adds static types into the language…

You can argue whether this is a good decision or not – you could say that the lack of the static typing in JavaScript is its biggest merit, so why the hell would they want to force us to stop using this benefit?

Fortunately, it’s just advice. You can use Angular 2 with Babel too but you probably won’t – the majority of examples on the Internet are written in TypeScript so by using this language you’ll have an easier start.

Look for examples of React code – you can find plenty of examples written in plain ES5 JavaScript as well as those written using Babel. Many of them use JSX, but many others don’t. This may confuse someone who wants to start but has never touched it before…

Routing

This is one of those things which is an integral part of Angular 2, but in the React world is covered by an external library. The most popular is react-router so I’ll that in my comparison.

Let’s start from the react-router. Here’s how to declare routes using this library:

https://gist.github.com/burczu/275ca8dbee8c863c897e#file-react-router-html

Basically the code above is usually added to the entry script of the React application. As you can see, routes are configured using Route components. Every route combines the URL of the currently displayed page with the appropriate component.

We should usually regard every component passed to the route as a single subpage – it will be added to the element with id=”app”(please see the second parameter of the render method).

And what does it look like in the Angular 2 application? Please see this sample routing configuration:

https://gist.github.com/burczu/b099f42afe6d06ddde22#file-angular-router-js

Well… Decorators again… We just add the RouteConfig decorator before the main application component. Here we can declare the path to recognise, and inform the router system which component should be displayed.

But at what place will the component appear? In previous versions of Angular we had an attribute data-ng-view. Now we have a custom component:

https://gist.github.com/burczu/b07c9cb1de4b1fdd4b81#file-angular-router-outlet-html

You have to add the above code into the template of the main application component – the component which matches the appropriate path will be shown here.

As you can see, it generally looks pretty simple in both technologies and both solutions work well enough.

Architecture

As React is just a library it does not provide any architecture itself. But Facebook developers, who were the creators of this library, advise the use of a Flux architecture. This provides a unidirectional data flow.

An action which contains this type, and any possible new data, is sent to the dispatcher. The dispatcher invokes callbacks registered in the stores which match this type of action (in this way it dispatches the action to all of the stores).

Whenever the store callback is invoked, it sends a change event to inform the view. The view may change its state according to these events and re-render itself. The view can also invoke other actions, e.g. when a user interacts with it and the flow starts again.

The Angular framework was initially an implementation of the MVC pattern. In the upcoming version, the architecture is based on components.

It’s actually very simple – the component and the template share data using two-way data binding and the component also uses services directly to deal with cross-cutting concerns such as accessing data, logging, configuration etc.

Everything which provides any data or information may be a service. In Angular 2 we also have mechanisms such as dependency injection which help us to work in this way.  .

As you can see, it is not strongly opinionated it seems – they have given us the components and the services and basically that’s it.

Fortunately, we can use another architecture if we want to. For example in this article you can see how to use Flux architecture (to be precise they use Redux) with Angular 2, so… you can do all of these kind of  things using this framework.

Summary

Phew… that’s it!  I haven’t written such a long article for a long time, and I hope it’s been worth it.

I’m sure there are more parts of these two technologies which could be compared but I’ve tried to focus on what are in my opinion, the most important.

I’ve also tried really hard not to give too much of my own personal opinion here because I know  deciding which technology is better can be a very controversial subject these days.

So, every time you have to make a choice, be pragmatic, consider all your needs and preferences and make your own independent decision!

Both of these are really great technologies and both could probably be applicable to your project.

Useful links

Similar comparisons and other useful links:

Do you like this post? Want to stay updated? Follow us on Twitter.

Download e-book:

Scalac Case Study Book

Download now

Authors

Bartłomiej Dybowski

Latest Blogposts

17.04.2024 / By  Michał Szajkowski

Mocking Libraries can be your doom

Test Automations

Test automation is great. Nowadays, it’s become a crucial part of basically any software development process. And at the unit test level it is often a necessity to mimic a foreign service or other dependencies you want to isolate from. So in such a case, using a mock library should be an obvious choice that […]

04.04.2024 / By  Aleksander Rainko

Scala 3 Data Transformation Library: ducktape 0.2.0.

Scala 3 Data Transformation Library: Ducktape 2.0

Introduction: Is ducktape still all duct tape under the hood? Or, why are macros so cool that I’m basically rewriting it for the third time? Before I go off talking about the insides of the library, let’s first touch base on what ducktape actually is, its Github page describes it as this: Automatic and customizable […]

28.03.2024 / By  Matylda Kamińska

Scalendar April 2024

scala conferences april 2024

Event-driven Newsletter Another month full of packed events, not only around Scala conferences in April 2024 but also Frontend Development, and Software Architecture—all set to give you a treasure trove of learning and networking opportunities. There’re online and real-world events that you can join in order to meet colleagues and experts from all over the […]

software product development

Need a successful project?

Estimate project