react-native-best-practices
SKILL.md
React Native Best Practices
Overview
Performance optimization guide for React Native applications, covering JavaScript/React, Native (iOS/Android), and bundling optimizations. Based on Callstack's "Ultimate Guide to React Native Optimization".
When to Apply
Reference these guidelines when:
- Debugging slow/janky UI or animations
- Investigating memory leaks (JS or native)
- Optimizing app startup time (TTI)
- Reducing bundle or app size
- Writing native modules (Turbo Modules)
- Profiling React Native performance
- Reviewing React Native code for performance
Priority-Ordered Guidelines
| Priority | Category | Impact | Prefix |
|---|---|---|---|
| 1 | FPS & Re-renders | CRITICAL | js-* |
| 2 | Bundle Size | CRITICAL | bundle-* |
| 3 | TTI Optimization | HIGH | native-*, bundle-* |
| 4 | Native Performance | HIGH | native-* |
| 5 | Memory Management | MEDIUM-HIGH | js-*, native-* |
| 6 | Animations | MEDIUM | js-* |
Quick Reference
Critical: FPS & Re-renders
Profile first:
# Open React Native DevTools
# Press 'j' in Metro, or shake device → "Open DevTools"
Common fixes:
- Replace ScrollView with FlatList/FlashList for lists
- Use React Compiler for automatic memoization
- Use atomic state (Jotai/Zustand) to reduce re-renders
- Use
useDeferredValuefor expensive computations
Critical: Bundle Size
Analyze bundle:
npx react-native bundle \
--entry-file index.js \
--bundle-output output.js \
--platform ios \
--sourcemap-output output.js.map \
--dev false --minify true
npx source-map-explorer output.js --no-border-checks
Common fixes:
- Avoid barrel imports (import directly from source)
- Remove unnecessary Intl polyfills (Hermes has native support)
- Enable tree shaking (Expo SDK 52+ or Re.Pack)
- Enable R8 for Android native code shrinking
High: TTI Optimization
Measure TTI:
- Use
react-native-performancefor markers - Only measure cold starts (exclude warm/hot/prewarm)
Common fixes:
- Disable JS bundle compression on Android (enables Hermes mmap)
- Use native navigation (react-native-screens)
- Defer non-critical work with
InteractionManager
High: Native Performance
Profile native:
- iOS: Xcode Instruments → Time Profiler
- Android: Android Studio → CPU Profiler
Common fixes:
- Use background threads for heavy native work
- Prefer async over sync Turbo Module methods
- Use C++ for cross-platform performance-critical code
References
Full documentation with code examples in references/:
JavaScript/React (js-*)
js-profile-react.md- React DevTools profilingjs-measure-fps.md- FPS monitoringjs-memory-leaks.md- JS memory leak huntingjs-lists-flatlist-flashlist.md- List performancejs-atomic-state.md- Jotai/Zustand patternsjs-concurrent-react.md- useDeferredValue, useTransitionjs-react-compiler.md- Automatic memoizationjs-animations-reanimated.md- Reanimated workletsjs-uncontrolled-components.md- TextInput optimization
Native (native-*)
native-platform-setup.md- iOS/Android tooling guidenative-profiling.md- Xcode/Android Studio profilingnative-measure-tti.md- TTI measurement setupnative-memory-patterns.md- C++/Swift/Kotlin memorynative-threading-model.md- Turbo Module threadsnative-view-flattening.md- View hierarchy debuggingnative-sdks-over-polyfills.md- Native vs JS librariesnative-turbo-modules.md- Building fast native modulesnative-memory-leaks.md- Native memory leak hunting
Bundling (bundle-*)
bundle-analyze-js.md- JS bundle visualizationbundle-analyze-app.md- App size analysisbundle-library-size.md- Evaluate dependenciesbundle-barrel-exports.md- Avoid barrel importsbundle-tree-shaking.md- Dead code eliminationbundle-code-splitting.md- Re.Pack code splittingbundle-r8-android.md- Android code shrinkingbundle-native-assets.md- Asset catalog setupbundle-hermes-mmap.md- Disable bundle compression
Searching References
# Find patterns by keyword
grep -l "reanimated" references/
grep -l "flatlist" references/
grep -l "memory" references/
grep -l "profil" references/
grep -l "tti" references/
grep -l "bundle" references/
Problem → Skill Mapping
| Problem | Start With |
|---|---|
| App feels slow/janky | js-measure-fps.md → js-profile-react.md |
| Too many re-renders | js-profile-react.md → js-react-compiler.md |
| Slow startup (TTI) | native-measure-tti.md → bundle-analyze-js.md |
| Large app size | bundle-analyze-app.md → bundle-r8-android.md |
| Memory growing | js-memory-leaks.md or native-memory-leaks.md |
| Animation drops frames | js-animations-reanimated.md |
| List scroll jank | js-lists-flatlist-flashlist.md |
| TextInput lag | js-uncontrolled-components.md |
| Native module slow | native-turbo-modules.md → native-threading-model.md |
Attribution
Based on "The Ultimate Guide to React Native Optimization" by Callstack.