Native modules let React Native (JavaScript) access native platform code and features (iOS/Android) that aren't available through JavaScript — bridging to native APIs, SDKs, or custom native functionality. They extend React Native beyond what JS alone provides.
Why native modules exist
React Native's JavaScript can't directly access every native capability. NATIVE MODULES
bridge JS to native code (Swift/Objective-C on iOS, Kotlin/Java on Android):
→ access native APIs/SDKs not exposed to JS
→ use existing native libraries
→ implement performance-critical or platform-specific functionality in native code
→ The bridge between React Native's JS and the native platform.
