Skip to content
DevDepth

Tag: reconciliation

2 items under this tag.

Tag Filter

All Content
9 min readreact-internalsReactInternals

How JSX Becomes DOM in React: Compile, React Element, Fiber, and Commit

Follow the full React pipeline from JSX compilation to React elements, Fiber reconciliation, and the final DOM commit.

9 min readreact-internalsReactInternals

React Diff Algorithm: How Reconciliation Uses Type, Key, and lastPlacedIndex

Understand how React reconciliation stays near O(n): single-node matching, array diffing in ReactChildFiber, keyed reuse, and move detection with lastPlacedIndex.