We want to hear from you!Take our 2021 Community Survey!
Support Ukraine ๐Ÿ‡บ๐Ÿ‡ฆ Help Provide Humanitarian Aid to Ukraine.

Virtual DOM and Internals

What is the Virtual DOM?

The virtual DOM (VDOM) is a programming concept where an ideal, or โ€œvirtualโ€, representation of a UI is kept in memory and synced with the โ€œrealโ€ DOM by a library such as ReactDOM. This process is called reconciliation.

This approach enables the declarative API of React: You tell React what state you want the UI to be in, and it makes sure the DOM matches that state. This abstracts out the attribute manipulation, event handling, and manual DOM updating that you would otherwise have to use to build your app.

Since โ€œvirtual DOMโ€ is more of a pattern than a specific technology, people sometimes say it to mean different things. In React world, the term โ€œvirtual DOMโ€ is usually associated with React elements since they are the objects representing the user interface. React, however, also uses internal objects called โ€œfibersโ€ to hold additional information about the component tree. They may also be considered a part of โ€œvirtual DOMโ€ implementation in React.

Is the Shadow DOM the same as the Virtual DOM?

No, they are different. The Shadow DOM is a browser technology designed primarily for scoping variables and CSS in web components. The virtual DOM is a concept implemented by libraries in JavaScript on top of browser APIs.

What is โ€œReact Fiberโ€?

Fiber is the new reconciliation engine in React 16. Its main goal is to enable incremental rendering of the virtual DOM. Read more.