DOM vs Virtual DOM (Vue's challenge)

DOM vs Virtual DOM (Vue's challenge)
by Janeth Kent Date: 05-10-2018 javascript DOM Vue virtual DOM

Most of the Javascript frameworks like Vue, React and Ember implement a “virtual DOM”.

While it seems like some thing from a technological know-how fiction, its number one motive for present is to expand the speed and proficiency of DOM updates. It offers a few more advantages as well.

What the DOM actually is (a reminder)

We have a tendency consider the DOM as the HTML document it represents. but without a doubt the DOM is a tree-like data structure that comes into existence as soon as an HTML document has been parsed 
The browser paints the DOM to the screen and will repaint it inresponse to user actions (e.g. mouse clicks) and updates through its API from your Javascript scripts e.g. document.createElement.

It’s expensive to update the DOM

When we use Javascript to make a change to our page, the browser has to do some work to find the required DOM nodes and make the change e.g.

// #myId could be anywhere in the document, which may have thousands of nodes!
document.getElementById('myId').appendChild(myNewNode);

In modern apps there can be thousands of nodes in the DOM, and so updates can be computationally expensive. It’s inevitable that small, frequent updates will slow the page down.

What is a virtual DOM?

The DOM can be represented as a data structure in Javascript, too. Here is pseudo-code of ways a DOM node may be represented:

// An unordered list represented as Javascript
let domNode = {
  tag: 'ul',
  attributes: { id: 'myId' },
  children: [
    // where the LI's would go
  ]
};

If we call that a “virtual” DOM node, then the complete structure of DOM nodes would make up our virtual DOM.

But why do this?

It’s not very expensive to update virtual nodes.

// This might be how we update the virtual DOM
domNode.children.push('
  • Item 3

');

If we use a virtual DOM, in preference to our code directly calling the DOM API with methods like .getElementById to make updates, the code will make adjustments just to the JS object, which is cheap.

Then, whilst it’s time to get the real DOM in sync with the modifications we’ve made, an efficient updating function is used:

// This function would call the DOM API and make changes
// to the browser's DOM. It would do it in batches and with
// more efficiency than it would with arbitrary updates.
sync(originalDomNode, domNode);

In any one cycle there may be many nodes to update, so batching API calls in this way could reduce a lot of inefficiency.

More than performance

Having a virtual DOM it not just a performance enhancement, it means additional functionality will be possible.

For example, in Vue.js, we can bypass the need for an HTML template or a template property by using a render() method, which returns virtual nodes:

new Vue({
  el: '#app',
  data: {
    message: 'hello world'
  },
  render(createElement) {
    return createElement(
      'div', 
      { attrs: { id: 'myId' } }, 
      this.message
    );
  }
});

Output:

<div id='app'>
  <div id='myId'>hello world</div>
</div>

Why do that? There are several viable benefits:

  1. You get the programmatic strength of Javascript. you could create factory-style functions to build your virtual nodes using Javascript’s array methods etc, something that might be more difficult using template syntax.
  2. You may make your code universal. since your Vue instance does not really on an HTML file it is also renderable by a server for server-side rendering.
  3. JSX. Render functions allow JS extensions like JSX which may be acceptable for architecting a component-based app.

 

 

 

 

 

Note: this article was originally posted here on the Vue.js Developers blog on 2017/02/21

 
by Janeth Kent Date: 05-10-2018 javascript DOM Vue virtual DOM hits : 7558  
 
Janeth Kent

Janeth Kent

Licenciada en Bellas Artes y programadora por pasión. Cuando tengo un rato retoco fotos, edito vídeos y diseño cosas. El resto del tiempo escribo en MA-NO WEB DESIGN AND DEVELOPMENT.

 
 
 

Related Posts

How to upload files to the server using JavaScript

In this tutorial we are going to see how you can upload files to a server using Node.js using JavaScript, which is very common. For example, you might want to…

How to combine multiple objects in JavaScript

In JavaScript you can merge multiple objects in a variety of ways. The most commonly used methods are the spread operator ... and the Object.assign() function.   How to copy objects with…

The Payment Request API: Revolutionizing Online Payments (Part 2)

In the first part of this series, we explored the fundamentals of the Payment Request API and how it simplifies the payment experience. Now, let's delve deeper into advanced features…

The Payment Request API: Revolutionizing Online Payments (Part 1)

The Payment Request API has emerged as the new standard for online payments, transforming the way transactions are conducted on the internet. In this two-part series, we will delve into…

Let's create a Color Picker from scratch with HTML5 Canvas, Javascript and CSS3

HTML5 Canvas is a technology that allows developers to generate real-time graphics and animations using JavaScript. It provides a blank canvas on which graphical elements, such as lines, shapes, images…

How do you stop JavaScript execution for a while: sleep()

A sleep()function is a function that allows you to stop the execution of code for a certain amount of time. Using a function similar to this can be interesting for…

Mastering array sorting in JavaScript: a guide to the sort() function

In this article, I will explain the usage and potential of the sort() function in JavaScript.   What does the sort() function do?   The sort() function allows you to sort the elements of…

Infinite scrolling with native JavaScript using the Fetch API

I have long wanted to talk about how infinite scroll functionality can be implemented in a list of items that might be on any Web page. Infinite scroll is a technique…

Sorting elements with SortableJS and storing them in localStorage

SortableJS is a JavaScript extension that you will be able to use in your developments to offer your users the possibility to drag and drop elements in order to change…

What is a JWT token and how does it work?

JWT tokens are a standard used to create application access tokens, enabling user authentication in web applications. Specifically, it follows the RFC 7519 standard. What is a JWT token A JWT token…

Template Literals in JavaScript

Template literals, also known as template literals, appeared in JavaScript in its ES6 version, providing a new method of declaring strings using inverted quotes, offering several new and improved possibilities. About…

How to use the endsWith method in JavaScript

In this short tutorial, we are going to see what the endsWith method, introduced in JavaScript ES6, is and how it is used with strings in JavaScript. The endsWith method is…

Clicky