Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions docsite/docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,21 @@ npx react-native-macos-init

### Quick Start

In your React Native macOS project directory, run:
1. **Start the Metro bundler** in your React Native macOS project directory:

```bash
npm run start
```

Keep this terminal window open. The Metro bundler must be running for your app to load JavaScript code.

2. **Build and launch your app** in a separate terminal window:

```bash
npx react-native run-macos
```

This will build your app and launch it automatically. A Metro bundler window will also open to serve your JavaScript code.
This will build your app and launch it automatically.

### Alternative Methods

Expand Down