Glossary of React Fiber terms in bippy
mainUnderstanding these terms is essential for using bippy:
- fiber: A "unit of execution" in React, representing a component or DOM element.
- commit: The process of applying changes to the host tree (e.g., DOM mutations).
- render: The process of building the fiber tree by executing component functions or classes.
- host tree: The tree of UI elements that React mutates (e.g., DOM elements).
- reconciler (or "renderer"): Custom bindings for React (e.g.,
react-dom,react-native,react-three-fiber) used to mutate the host tree. - rendererID: The ID of the reconciler, starting at 1.
- root: A special
FiberRoottype containing the container fiber in itscurrentproperty.