react-native
Turbo Modules
Turbo Modules are the next-generation native module system in React Native's New Architecture, replacing the traditional bridge-based modules. They use the JavaScript Interface (JSI) for direct, synchronous communication between JavaScript and native code, eliminating the serialization overhead of the old JSON bridge. Turbo Modules also support lazy loading — they're only initialized when first accessed rather than at app startup, which significantly improves launch performance.
#react-native