react-native-project-creater
When to use this skill
Use this skill whenever the user wants to:
- Create a new React Native project from scratch
- Choose between React Native CLI and Expo for project initialization
- Configure TypeScript, bundler, and native dependencies
- Set up the initial project structure with navigation and state management
How to use this skill
Workflow
- Gather requirements: project name, organization, TypeScript preference, Expo vs bare CLI
- Run the initialization command with appropriate options
- Install initial dependencies (navigation, state management, etc.)
- Verify the project builds and runs on a simulator or device
1. Project Creation (CLI)
# Using React Native Community CLI
npx @react-native-community/cli init MyApp
# With TypeScript template
npx @react-native-community/cli init MyApp --template react-native-template-typescript
2. Project Creation (Expo)
# Using Expo (recommended for new projects)
npx create-expo-app MyApp --template blank-typescript
3. Project Structure
MyApp/
├── App.tsx # Entry point
├── android/ # Android native project
├── ios/ # iOS native project
├── src/ # Application source code
│ ├── screens/
│ ├── components/
│ └── navigation/
├── package.json
├── tsconfig.json
└── metro.config.js # Metro bundler configuration
4. Initial Setup
# Install dependencies
npm install
# iOS: install CocoaPods
cd ios && pod install && cd ..
# Run on simulators
npx react-native run-ios
npx react-native run-android
Best Practices
- Use consistent naming and package identifiers across platforms
- Lock Node.js and React Native versions for reproducible builds
- Run
pod installafter adding any native dependency on iOS - Start with the default template, verify it runs, then incrementally add features
- Set up CI early with both
npx react-native run-androidandrun-iosbuild steps
Resources
- Environment setup: https://reactnative.dev/docs/environment-setup
- Expo getting started: https://docs.expo.dev/get-started/create-a-project/
Keywords
react native init, project creation, Expo, React Native CLI, initialization, cross-platform, TypeScript, scaffolding
More from partme-ai/full-stack-skills
vite
Guidance for Vite using the official Guide, Config Reference, and Plugins pages. Use when the user needs Vite setup, configuration, or plugin selection details.
68element-plus-vue3
Provides comprehensive guidance for Element Plus Vue 3 component library including installation, components, themes, internationalization, and API reference. Use when the user asks about Element Plus for Vue 3, needs to build Vue 3 applications with Element Plus, or customize component styles.
63vue3
Guidance for Vue 3 using the official guide and API reference. Use when the user needs Vue 3 concepts, patterns, or API details to build components, apps, and tooling.
54electron
Build cross-platform desktop applications with Electron, covering main/renderer process architecture, IPC communication, BrowserWindow management, menus, tray icons, packaging, and security best practices. Use when the user asks about Electron, needs to create desktop applications, implement Electron features, or build cross-platform desktop apps.
51uniapp-project
Provides per-component and per-API examples with cross-platform compatibility details for uni-app, covering built-in components, uni-ui components, and APIs (network, storage, device, UI, navigation, media). Use when the user needs official uni-app components or APIs, wants per-component examples with doc links, or needs platform compatibility checks.
40ascii-cli-logo-banner
Entry point for ASCII CLI banners that routes to the Python built-in font skill or figlet.js/FIGfont skill. Use when the user wants a startup banner, ASCII logo, terminal welcome screen, or CLI branding for a service.
38