Skip to main content

Compatibility

Requirements

Minimum
React Native0.76.0
Node.js18.0.0
react-native-nitro-modulesRequired peer dependency, matching version
yarn add react-native-nitro-jsdom react-native-nitro-modules

react-native-nitro-modules is not bundled: every consumer must install it directly, since it's the native bridge Nitro-based libraries share.

New Architecture required

This library is built entirely on Nitro Modules, which compile down to JSI/TurboModules. There is no legacy bridge fallback, so the New Architecture (Fabric + TurboModules) must be enabled in your app. React Native 0.76 is the version where the New Architecture became stable enough to rely on as a floor.

Platforms

  • iOS: supported, deployment target inherited from your React Native / CocoaPods setup (no separate override)
  • Android: supported
  • visionOS: supported, 1.0 or higher

Android build details

Value
minSdkVersion23
compileSdkVersion34
NDK27.1.12297006
C++ standardC++20

JS engine

Tested with Hermes. JSC has not been specifically verified. QuickJS (the engine used inside the sandbox) runs independently of whichever engine powers the rest of your app, so this only affects your app's own JS, not code passed to evaluate().

Expo

The example app in this repo is a plain React Native CLI project, not Expo. Because this library ships native code compiled via Nitro Modules, it cannot run inside Expo Go. It should work with a custom Expo Dev Client (expo prebuild + a development build), but that path hasn't been verified yet.