Overview

The React DevTools extension consists of multiple pieces:

One of the largest performance bottlenecks of the old React DevTools was the amount of bridge traffic. Each time React commits an update, the backend sends every fiber that changed across the bridge, resulting in a lot of (JSON) serialization. The primary goal for the DevTools rewrite was to reduce this traffic. Instead of sending everything across the bridge, the backend should only send the minimum amount required to render the Components tree. The frontend can request more information (e.g. an element's props) on-demand, only as needed.

The old DevTools also rendered the entire application tree in the form of a large DOM structure of nested nodes. A secondary goal of the rewrite was to avoid rendering unnecessary nodes by using a windowing library (specifically react-window).

Components panel

Serializing the tree

Every React commit that changes the tree in a way DevTools cares about results in an "operations" message being sent across the bridge. These messages are lightweight patches that describe the changes that were made. (We don't resend the full tree structure like in legacy DevTools.)

The payload for each message is a typed array. The first two entries are numbers that identify which renderer and root the update belongs to (for multi-root support). Then the strings are encoded in a string table. The rest of the array depends on the operations being made to the tree.

No updates are required for most commits because we only send the following bits of information: element type, id, parent id, owner id, name, and key. Additional information (e.g. props, state) requires a separate "inspectElement" message.

String table

The string table is encoded right after the first two numbers.

It consists of:

  1. the total length of the next items that belong to the string table
  2. for each string in a table:
    • encoded size
    • a list of its UTF encoded codepoints

For example, for Foo and Bar we would see:

[
  8,   // string table length
  3,   // encoded display name size
  70,  // "F"
  111, // "o"
  111, // "o"
  3,   // encoded display name size
  66,  // "B"
  97,  // "a"
  114, // "r"
]

Later operations will reference strings by a one-based index. For example, 1 would mean "Foo", and 2 would mean "Bar". The 0 string id always represents null and isn't explicitly encoded in the table.

Adding a root node

Adding a root to the tree requires sending 5 numbers:

  1. add operation constant (1)
  2. fiber id
  3. element type constant (11 === ElementTypeRoot)
  4. root has StrictMode enabled
  5. supports profiling flag
  6. supports StrictMode flag
  7. owner metadata flag

For example, adding a root fiber with an id of 1:

[
  1, // add operation
  1, // fiber id
  11, // ElementTypeRoot
  1, // this root is StrictMode enabled
  1, // this root's renderer supports profiling
  1, // this root's renderer supports StrictMode
  1, // this root has owner metadata
]

Adding a leaf node

Adding a leaf node to the tree requires sending 7 numbers:

  1. add operation constant (1)
  2. fiber id
  3. element type constant (e.g. 1 === ElementTypeClass)
  4. parent fiber id
  5. owner fiber id
  6. string table id for displayName
  7. string table id for key

For example, adding a function component <Foo> with an id 2:

[
  1,   // add operation
  2,   // fiber id
  1,   // ElementTypeClass
  1,   // parent id
  0,   // owner id
  1,   // id of "Foo" displayName in the string table
  0,   // id of null key in the string table (always zero for null)
]

Removing a node

Removing a fiber from the tree (a root or a leaf) requires sending:

  1. remove operation constant (2)
  2. how many items were removed
  3. number of children
    • (followed by a children-first list of removed fiber ids)

For example, removing fibers with ids of 35 and 21:

[
  2, // remove operation
  2, // number of removed fibers
  35, // first removed id
  21, // second removed id
]

Re-ordering children

  1. re-order children constant (3)
  2. fiber id
  3. number of children
    • (followed by an ordered list of child fiber ids)

For example:

[
  3,  // re-order operation
  15, // fiber id
  2,  // number of children
  35, // first child id
  21, // second child id
]

Updating tree base duration

While profiling is in progress, we send an extra operation any time a fiber is added or updated in a way that affects its tree base duration. This information is needed by the Profiler UI in order to render the "snapshot" and "ranked" chart views.

  1. tree base duration constant (4)
  2. fiber id
  3. tree base duration

For example, updating the base duration for a fiber with an id of 1:

[
  4,  // update tree base duration operation
  4,  // tree base duration operation
  1,  // fiber id
  32, // new tree base duration value
]

Updating errors and warnings on a Fiber

We record calls to console.warn and console.error in the backend. Periodically we notify the frontend that the number of recorded calls got updated. We only send the serialized messages as part of the inspectElement event.

[
  5, // update error/warning counts operation
  4, // fiber id
  0, // number of calls to console.error from that fiber
  3, // number of calls to console.warn from that fiber
]

Removing a root

A special case of unmounting an entire root (including its descendants). This specialized message replaces what would otherwise be a series of remove-node operations. It is currently only used in one case: updating component filters. The primary motivation for this is actually to preserve fiber ids for components that are re-added to the tree after the updated filters have been applied. This preserves mappings between the Fiber (id) and things like error and warning logs.

[
  6, // remove root operation
]

This operation has no additional payload because renderer and root ids are already sent at the beginning of every operations payload.

Setting the mode for a subtree

This message specifies that a subtree operates under a specific mode (e.g. StrictMode).

[
  7,   // set subtree mode
  1,   // subtree root fiber id
  0b01 // mode bitmask
]

Modes are constant meaning that the modes a subtree mounts with will never change.

Reconstructing the tree

The frontend stores its information about the tree in a map of id to objects with the following keys:

1 The depth value determines how much padding/indentation to use for the element when rendering it in the Components panel. (This preserves the appearance of a nested tree, even though the view is a flat list.)

2 The weight of an element is the number of elements (including itself) below it in the tree. We cache this property so that we can quickly determine the total number of Components as well as find the Nth element within that set. (This enables us to use windowing.) This value needs to be adjusted each time elements are added or removed from the tree, but we amortize this over time to avoid any big performance hits when rendering the tree.

Finding the element at index N

The tree data structure lets us impose an order on elements and "quickly" find the Nth one using the weight attribute.

First we find which root contains the index:

let rootID;
let root;
let rootWeight = 0;
for (let i = 0; i < this._roots.length; i++) {
  rootID = this._roots[i];
  root = this._idToElement.get(rootID);
  if (root.children.length === 0) {
    continue;
  } else if (rootWeight + root.weight > index) {
    break;
  } else {
    rootWeight += root.weight;
  }
}

We skip the root itself because don't display them in the tree:

const firstChildID = root.children[0];

Then we traverse the tree to find the element:

let currentElement = this._idToElement.get(firstChildID);
let currentWeight = rootWeight;
while (index !== currentWeight) {
  for (let i = 0; i < currentElement.children.length; i++) {
    const childID = currentElement.children[i];
    const child = this._idToElement.get(childID);
    const { weight } = child;
    if (index <= currentWeight + weight) {
      currentWeight++;
      currentElement = child;
      break;
    } else {
      currentWeight += weight;
    }
  }
}

Inspecting an element

When an element is mounted in the tree, DevTools sends a minimal amount of information about it across the bridge. This information includes its display name, type, and key- but does not include things like props or state. (These values are often expensive to serialize and change frequently, which would add a significant amount of load to the bridge.)

Instead, DevTools lazily requests additional information about an element only when it is selected in the "Components" tab. At that point, the frontend requests this information by sending a special "inspectElement" message containing the id of the element being inspected. The backend then responds with an "inspectedElement" message containing the additional details.

Polling strategy

Elements can update frequently, especially in response to things like scrolling events. Since props and state can be large, we avoid sending this information across the bridge every time the selected element is updated. Instead, the frontend polls the backend for updates about once a second. The backend tracks when the element was last "inspected" and sends a special no-op response if it has not been re-rendered since then.

Deeply nested properties

Even when dealing with a single component, serializing deeply nested properties can be expensive. Because of this, DevTools uses a technique referred to as "dehydration" to only send a shallow copy of the data on initial inspection. DevTools then fills in the missing data on-demand as a user expands nested objects or arrays. Filled in paths are remembered (for the currently inspected element) so they are not "dehydrated" again as part of a polling update.

Inspecting hooks

Hooks present a unique challenge for the DevTools because of the concept of custom hooks. (A custom hook is essentially any function that calls at least one of the built-in hooks. By convention custom hooks also have names that begin with "use".)

So how does DevTools identify custom functions called from within third-party components? It does this by temporarily overriding React's built-in hooks and shallow rendering the component in question. Whenever one of the (overridden) built-in hooks are called, it parses the call stack to spot potential custom hooks (functions between the component itself and the built-in hook). This approach enables it to build a tree structure describing all of the calls to both the built-in and custom hooks, along with the values passed to those hooks. (If you're interested in learning more about this, here is the source code.)

Note: DevTools obtains hooks info by re-rendering a component. Breakpoints will be invoked during this additional (shallow) render, but DevTools temporarily overrides console methods to suppress logging.

Performance implications

To mitigate the performance impact of re-rendering a component, DevTools does the following:

Profiler

DevTools provides a suite of profiling tools for identifying and fixing performance problems. React 16.9+ supports a "legacy" profiler and React 18+ adds the "timeline" profiler support. These profilers are explained below, but at a high level– the architecture of each profiler aims to minimize the impact (CPU usage) while profiling is active. This can be accomplished by:

The majority of profiling information is stored in the DevTools backend. The backend push-notifies the frontend of when profiling starts or stops by sending a "profilingStatus" message. The frontend also asks for the current status after mounting by sending a "getProfilingStatus" message. (This is done to support the reload-and-profile functionality.)

Legacy profiler

When profiling begins, the frontend takes a snapshot/copy of each root. This snapshot includes the id, name, key, and child IDs for each node in the tree. (This information is already present on the frontend, so it does not require any additional bridge traffic.) While profiling is active, each time React commits– the frontend also stores a copy of the "operations" message (described above). Once profiling has finished, the frontend can use the original snapshot along with each of the stored "operations" messages to reconstruct the tree for each of the profiled commits.

When profiling begins, the backend records the base durations of each fiber currently in the tree. While profiling is in progress, the backend also stores some information about each commit, including:

This information will eventually be required by the frontend in order to render its profiling graphs, but it will not be sent across the bridge until profiling has been completed (to minimize the performance impact of profiling).

Timeline profiler

Timeline profiling data can come from one of two places:

Combining profiling data

Once profiling is finished, the frontend requests profiling data from the backend one renderer at a time by sending a "getProfilingData" message. The backend responds with a "profilingData" message that contains per-root commit timing and duration information. The frontend then combines this information with its own snapshots to form a complete picture of the profiling session. Using this data, charts and graphs are lazily computed (and incrementally cached) on-demand, based on which commits and views are selected in the Profiler UI.

Importing/exporting data

Because all of the data is merged in the frontend after a profiling session is completed, it can be exported and imported (as a single JSON object), enabling profiling sessions to be shared between users.

Package Specific Details

Devtools Extension Overview Diagram

React Devtools Extension