React Native ejecuta código JavaScript y código nativo que deben comunicarse. La arquitectura original utilizaba un puente asincrónico; la nueva arquitectura (JSI, TurboModules, Fabric) permite una comunicación más rápida y sincrónica. Comprender esto aclara el comportamiento y rendimiento de React Native.
La arquitectura original: el puente
React Native runs:
→ a JS THREAD (your React/JS code) and the NATIVE side (UI, native modules)
→ they communicate over a BRIDGE: messages are SERIALIZED (to JSON), passed ASYNC,
and deserialized on the other side
Limitations:
✗ ASYNCHRONOUS only (can't call native synchronously)
✗ SERIALIZATION overhead; the bridge can be a BOTTLENECK with heavy traffic
✗ e.g. fast scrolling/animations passing data over the bridge → jank
