react-native-web-performance

Installation
SKILL.md

React Native Web - Performance

Performance optimization patterns for React Native Web, focusing on bundle size, rendering performance, and web-specific optimizations.

Key Concepts

Code Splitting

Use dynamic imports for lazy loading:

import React, { lazy, Suspense } from 'react';
import { View, ActivityIndicator } from 'react-native';

const HeavyComponent = lazy(() => import('./HeavyComponent'));
Installs
42
GitHub Stars
166
First Seen
Jan 22, 2026
react-native-web-performance — thebushidocollective/han