react-native-best-practices
Install this skill
npx skills add callstackincubator/agent-skillsWorks across Claude Code, Cursor, Codex, Copilot & Antigravity
This skill provides a systematic framework for debugging and enhancing the performance of React Native applications. It focuses on identifying bottlenecks across the JavaScript runtime, native bridge, and application bundling process. By addressing common issues like list rendering lag, excessive bundle size, and suboptimal startup times, it helps developers transition from reactive debugging to proactive optimization. The content emphasizes data-driven decision-making, using native profiling tools, bundle analyzers, and specific React patterns like atomic state management. It covers the full stack from high-level React optimization strategies to low-level native module integration and memory management. Whether you are addressing frame drops in complex UI components or minimizing binary size for distribution, this resource offers direct, actionable solutions tailored for professional React Native development environments.
When to Use This Skill
- β’Eliminating UI stutter during high-frequency list scrolling
- β’Reducing cold start time on low-end Android devices
- β’Diagnosing and resolving memory leaks in the native bridge
- β’Shrinking production app binary size before store deployment
How to Invoke This Skill
Example prompts that trigger this skill in Claude Code, Cursor, or Antigravity:
- βHow do I fix my React Native app performance?
- βReduce React Native bundle size
- βWhy is my list scrolling laggy in React Native?
- βOptimize React Native cold start time
- βReact Native memory leak debugging guide
Pro Tips
- π‘Combine this skill with a profiling tool (e.g., Flipper, Xcode Instruments, Android Studio Profiler) to accurately pinpoint bottlenecks before applying solutions.
- π‘Implement suggestions incrementally, measuring performance after each change to isolate the impact and avoid introducing new issues.
- π‘Prioritize optimizations marked as 'CRITICAL' or 'HIGH' impact by the skill first, as these often yield the most significant performance gains.
- π‘Regularly review your component re-renders using React DevTools to proactively identify unnecessary updates before they become performance problems.
What this skill does
- β’Optimizing list rendering via virtualization
- β’Visualizing and reducing JavaScript bundle size
- β’Measuring Time to Interactive (TTI) and frame rate consistency
- β’Refactoring native code for Turbo Module compatibility
- β’Implementing automatic memoization and state atomization
When not to use it
- βWhen building basic prototypes that do not require production-grade performance
- βWhen investigating purely backend or API-side response latency
Example workflow
- Run an initial bundle analysis to identify large dependencies.
- Profile the UI using React DevTools to pinpoint expensive re-renders.
- Replace standard ScrollViews with virtualized lists where appropriate.
- Audit native module implementation to ensure asynchronous execution.
- Verify performance gains using native profiling tools like Instruments or Android Profiler.
- Finalize builds with Hermes and R8 optimizations enabled.
Prerequisites
- βAccess to Metro bundler and React Native CLI
- βInstalled React DevTools and native profiling suites
- βBasic understanding of the Hermes engine
Pitfalls & limitations
- !Premature optimization without first gathering metrics from profiling tools
- !Over-memoizing components, which can sometimes increase overhead rather than reduce it
- !Neglecting platform-specific differences when applying general JS-side fixes
FAQ
How it compares
Unlike generic performance prompts, this skill enforces a taxonomy of specific metrics and tools, ensuring that solutions map directly to verified Callstack-backed React Native standards rather than trial-and-error changes.
π Full skill instructions β original source: callstackincubator/agent-skills
## 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".
## Skill Format
Each reference file follows a hybrid format for fast lookup and deep understanding:
- **Quick Pattern**: Incorrect/Correct code snippets for immediate pattern matching
- **Quick Command**: Shell commands for process/measurement skills
- **Quick Config**: Configuration snippets for setup-focused skills
- **Quick Reference**: Summary tables for conceptual skills
- **Deep Dive**: Full context with When to Use, Prerequisites, Step-by-Step, Common Pitfalls
**Impact ratings**: CRITICAL (fix immediately), HIGH (significant improvement), MEDIUM (worthwhile 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
useDeferredValue for 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-performance for 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-*)| File | Impact | Description |
|------|--------|-------------|
|
js-lists-flatlist-flashlist.md | CRITICAL | Replace ScrollView with virtualized lists ||
js-profile-react.md | MEDIUM | React DevTools profiling ||
js-measure-fps.md | HIGH | FPS monitoring and measurement ||
js-memory-leaks.md | MEDIUM | JS memory leak hunting ||
js-atomic-state.md | HIGH | Jotai/Zustand patterns ||
js-concurrent-react.md | HIGH | useDeferredValue, useTransition ||
js-react-compiler.md | HIGH | Automatic memoization ||
js-animations-reanimated.md | MEDIUM | Reanimated worklets ||
js-uncontrolled-components.md | HIGH | TextInput optimization |### Native (
native-*)| File | Impact | Description |
|------|--------|-------------|
|
native-turbo-modules.md | HIGH | Building fast native modules ||
native-sdks-over-polyfills.md | HIGH | Native vs JS libraries ||
native-measure-tti.md | HIGH | TTI measurement setup ||
native-threading-model.md | HIGH | Turbo Module threads ||
native-profiling.md | MEDIUM | Xcode/Android Studio profiling ||
native-platform-setup.md | MEDIUM | iOS/Android tooling guide ||
native-view-flattening.md | MEDIUM | View hierarchy debugging ||
native-memory-patterns.md | MEDIUM | C++/Swift/Kotlin memory ||
native-memory-leaks.md | MEDIUM | Native memory leak hunting ||
native-android-16kb-alignment.md | CRITICAL | Third-party library alignment for Google Play |### Bundling (
bundle-*)| File | Impact | Description |
|------|--------|-------------|
|
bundle-barrel-exports.md | CRITICAL | Avoid barrel imports ||
bundle-analyze-js.md | CRITICAL | JS bundle visualization ||
bundle-tree-shaking.md | HIGH | Dead code elimination ||
bundle-analyze-app.md | HIGH | App size analysis ||
bundle-r8-android.md | HIGH | Android code shrinking ||
bundle-hermes-mmap.md | HIGH | Disable bundle compression ||
bundle-native-assets.md | HIGH | Asset catalog setup ||
bundle-library-size.md | MEDIUM | Evaluate dependencies ||
bundle-code-splitting.md | MEDIUM | Re.Pack code splitting |## 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 || Native library alignment issue |
native-android-16kb-alignment.md |## Attribution
Based on "The Ultimate Guide to React Native Optimization" by Callstack.
How to Use This Skill Unit
Option A: Project-Specific (Recommended)
- Click "Download" above
- In your project, create the directory:
.agent/skills/react-native-best-practices/ - Save the file as
SKILL.md - The agent will automatically discover the skill based on its description.
Option B: Global Installation (All Agents)
Save the file to these locations to make it available across all projects:
- Claude Code:
~/.claude/skills/callstackincubator/agent-skills/react-native-best-practices/SKILL.md - Cursor:
~/.cursor/skills/callstackincubator/agent-skills/react-native-best-practices/SKILL.md - Antigravity:
~/.gemini/antigravity/skills/callstackincubator/agent-skills/react-native-best-practices/SKILL.md
π Install with CLI:npx skills add callstackincubator/agent-skills