What's the deal with the virtual DOM? How React virtual DOM works precisely? It's significantly faster, without question, and it brings a whole series of benefits to coding.

How come?

Which efficiency issues of the “real” DOM does it solve? And what makes the way that React.js manipulates the DOM better than the “standard” way? 

Let's get you some answers:
 

But First: What Is the DOM Anyway?

"Document Object Model."

It's only but natural that, before we get into details on React and the Virtual DOM, we gain a deep understanding of the DOM itself.

Therefore, here's a definition that hopefully sheds enough light on this concept:

DOM is a tree-structured abstraction of (or an in-memory representation, if you prefer) a page's HTML code. One that preserves the parent/child relationships between the nodes within its tree-like structure.

Any better?

The major benefit is the API that it provides, that allows us, developers, to easily scan through the HTML elements of a page and to manipulate them as needed. For instance:
 

  • to add new nodes
  • to edit a given node's content
  • to remove specific nodes 
     

How React Virtual DOM Works- What Is the DOM?


And What Is DOM Manipulation More Precisely?

It's the very process that enables the content on any of your website's pages to be dynamically updated.

Needless to add that it's JavaScript that you would use when handling the DOM. Also, methods such as:
 

  • removeChild
  • getElementByID
     

… are included in the API that the “actual” DOM provides you with.
 

What Efficiency Challenges Does the "Real" DOM Face? 

Now, before we go back to your initial “dilemma” (“how React Virtual DOM works”), let's see why a “virtual” DOM was even needed in the first place.

What efficiency issues of the “real” DOM does it address?

So, it's JavaScript that we use as we manipulate the DOM, right? And it used to work fantastic back in the days when static UIs would “rule” and the concept of dynamically updating nodes wasn't yet... “invented”.

Well, since then things have changed...

The DOM manipulation, once the core process of all modern interactive web pages, started to show its limitations. And that because the “real” DOM would update a “target” node along with the entire web page (with its corresponding layout and CSS). 

For instance, imagine that:

You have a list of items and it's just one of those items that you need to update. Traditionally, the “real” DOM would re-render the entire list and not exclusively the items that receive updates. See?

Just think of a scenario where you have an SPA (Single Page App). One with thousands of dynamically generated nodes, that would all need to “listen to” lots of future updates and to re-render them in the UI.

It's here that things get discouragingly... slow!

The real DOM can't cope with pages carrying thousands and thousands of components to be re-rendered when updates are being passed through. 

It's in this context here that the virtual DOM stepped in! And it's React that makes the most of it.

Clear enough?
 

How React Virtual DOM Works: Snapshots, Diffing and Reconciliation

Before we get into the “how”, let's shed some light on the “what”. What is the “virtual” DOM?

A light-weight abstraction/copy of the HTML DOM, having the same properties as the “real” one. The only difference is that it can't write to the screen like the actual DOM “can”. Also, it's local to React.

A copy of the actual DOM that you get to update “intensively” without impacting the real DOM.

Note: do keep in mind that it isn't React that introduced this concept since there are plenty of other libraries who're using it.
 

Snapshots, Diffing and Reconciliation

Now, let's get into details on how React virtual DOM works. 
 

a. First of all, React takes a virtual DOM snapshot before doing any updates.

b. 
It will then use it (this record of the DOM state) to compare it against the updated virtual DOM, before applying any changes to the actual DOM itself.
 

And it's a “diffing algorithm” that supports all this comparing and enables React to identify any changes. To detect the updates that have been applied.

Also, the entire  process is called “reconciliation”:

Whenever updates need to be made to the actual DOM, React updates the Virtual DOM first, and then, once it has done its compairing, it syncs the Real DOM.

In other words: before applying any of the requested updates, React makes a copy of the virtual DOM, that it will then set against the updated virtual DOM (diffing). It's during this diffing-reconciliation process that React detects the changes that have been applied and identifies the objects to be updated.

And it's precisely those objects that it will update in the actual DOM.

The huge benefits?
 

  1. virtual DOM updates a whole lot faster
  2. it updates exclusively the “target” nodes, leaving the rest ones of the page alone
     

Summing Up

To recap, let's try and sum up this whole “How React Virtual DOM Works” guide here to its bare essentials. 

So, here's how React updates the DOM in 3 simple steps:
 

  1. first, it applies the given updates to the whole Virtual DOM
  2. then, it compares it with the snapshot of the virtual DOM that it will have taken, using an algorithm called “diffing” during this whole process of comparing and spotting any changes/contrasts
  3. then, it's specifically (and exclusively) those changed elements that it updates in the actual DOM
     

The END! Have I managed to make this process any clearer for you? Can you now see what's “under the hood” of the way React updates DOM?

And the specific reasons why it's so much faster than the real DOM manipulation?

Development

We do Web development

Go to our Web development page!

Visit page!

Browse cities

Recommended Stories

OPTASY Makes it on Clutch’s Industry Game-Changer Ranks
Investing in quality e-commerce solutions is a must in this current digital world. Consumers nowadays love having… (Read more)
5 Minutes /
The Power of Upgrade: Transforming Government Websites with Drupal
Government websites play a vital role in our lives. They are the bridges that connect us to our government,… (Read more)
10 minutes /
Telehealth Revolution: Leveraging CMS for Virtual Patient Care
Telehealth is revolutionizing how we think about healthcare, bringing doctor visits and medical advice straight to… (Read more)
10 minutes /