finds.dev← search

// the find

react/react-native

★ 125,990 · C++ · MIT · updated Jun 2026

A framework for building native applications using React

React Native is Meta's framework for building iOS and Android apps using React and JavaScript. It renders actual native UI components rather than webviews, which is the key architectural decision that separates it from Cordova-era hybrid approaches. Target audience is web developers who want to ship mobile apps without learning Swift or Kotlin.

1. The New Architecture (JSI + Fabric + TurboModules) finally ships synchronous JS-to-native calls without the async bridge bottleneck that plagued RN for years — real performance improvement for complex interactions. 2. Expo has matured to the point where 'works on non-Mac without losing access to iOS' is genuinely achievable now, which removes a major barrier for cross-platform teams. 3. The JS layer means you can share business logic, validation, and API clients with your web app — not just aesthetics but actual code. 4. The CI infrastructure here is serious: Maestro E2E tests, pre-built iOS core, nightly builds, and a structured release process that many open source projects half that size don't bother with.

1. The upgrade path between minor versions is still painful — the community upgrade helper exists because it's genuinely necessary, not as a nicety. Monorepo projects with custom native modules will lose a day or two per upgrade. 2. Debugging native crashes is still a context switch: you end up in Xcode or Android Studio anyway, which defeats half the appeal for teams without mobile experience. 3. The ecosystem has a long tail of abandoned libraries that technically install but haven't been updated for the New Architecture — you often discover this after you've already built around them. 4. Styling is Flexbox-only with no CSS grid, no cascade, no inheritance — fine for most layouts but you'll hit walls building anything with complex typographic or table-like structures.

View on GitHub → Homepage ↗

// want more like this?

We dig through GitHub every week and send a few repos picked for what you actually care about — each with an honest take like this one.

Get finds in your inbox → Search again →