This repository provides a comprehensive, step-by-step guide for setting up a React Native development environment on macOS. It covers the installation of essential tools—Xcode, Homebrew, Node.js (with both Homebrew and nvm options), Watchman, Ruby (via rbenv), and CocoaPods—and outlines how to run both existing and new React Native apps.
This guide covers the installation of the essential tools you need to develop React Native applications on a Mac. By the end, you will have installed Xcode, Homebrew, Node.js (via either Homebrew or nvm), Watchman, Ruby (via rbenv), and CocoaPods, and will be ready to run or create React Native apps.
- A Mac running a recent version of macOS.
- An Apple ID (required to download Xcode from the App Store).
What is it?
Xcode is Apple’s official Integrated Development Environment (IDE) for macOS and iOS development. You need it for the iOS simulator, building iOS apps, and accessing Apple SDKs.
Steps:
- Open the Mac App Store.
- Search for Xcode.
- Click Get and then Install.
Verification:
Once installed, open Xcode from your Applications folder to complete any initial setup. Xcode will also install essential command-line tools that React Native needs to build iOS apps.
What is it?
Homebrew is a popular package manager for macOS. It makes it easier to install and manage command-line tools and frameworks needed for development.
Steps:
- Open the Terminal app on your Mac.
- Run the following command:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- Follow the prompts to complete the installation. Homebrew may suggest adding certain paths to your shell configuration file (like
~/.zshrc
or~/.bashrc
).
Verification:
brew --version
If you see a version number, Homebrew is installed correctly.
What are they?
- Node.js is a JavaScript runtime that allows you to run JavaScript code outside the browser. React Native’s development tools, such as Metro (the bundler), run on Node.js.
- npm (Node Package Manager) comes with Node.js and is used to install and manage JavaScript packages.
You have two options:
- Option A: Install Node.js via Homebrew
- Option B: Install Node.js via nvm (Node Version Manager)
Why use nvm?
nvm
allows you to manage multiple Node.js versions on the same machine. This is especially useful if you work on multiple projects that require different Node.js versions.
Steps:
brew install node
Verification:
node --version
npm --version
You should see version numbers for both Node.js and npm.
Steps:
-
Install nvm by running:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash
Note: Replace
v0.39.3
with the latest version from the nvm GitHub repo if newer. -
Close and reopen your terminal or run:
source ~/.nvm/nvm.sh
-
Install a specific version of Node.js. For example:
nvm install 18
This installs Node.js v18.
-
Set a default Node.js version:
nvm alias default 18
Verification:
node --version
npm --version
You should see the version numbers corresponding to the Node.js version you installed via nvm.
Switching Between Versions: If you need another version later, say Node.js v16:
nvm install 16
nvm use 16
Now your terminal session will use Node.js v16. You can switch back to v18 with:
nvm use 18
What is it?
Watchman is a tool by Meta (Facebook) that monitors file system changes. It improves the performance of React Native’s development server by quickly detecting file changes and triggering rebuilds.
Steps:
brew install watchman
Verification:
watchman --version
You should see a version number printed.
Why use rbenv?
Using rbenv
allows you to manage multiple Ruby versions on the same machine easily. CocoaPods (used later) is a Ruby gem, and having a stable and managed Ruby environment can help avoid version conflicts.
Steps:
-
Install rbenv:
brew install rbenv
-
Initialize rbenv (depending on your shell, you might add this to
~/.zshrc
or~/.bash_profile
):rbenv init
Follow the instructions that appear to add the
eval "$(rbenv init -)"
line to your shell configuration file. -
Restart your terminal or run the
eval
command given byrbenv init
. -
Install the desired Ruby version:
rbenv install 3.3.0 rbenv global 3.3.0 rbenv rehash
Verification:
ruby --version
This should show ruby 3.3.0
(or the version you installed).
What is it?
CocoaPods is a dependency manager for iOS projects. React Native’s iOS projects often rely on CocoaPods for managing native iOS dependencies.
Steps:
sudo gem install -n /usr/local/bin ffi cocoapods
Why -n /usr/local/bin
?
This ensures the pod
command is installed in a directory that’s already on your PATH, so you can use it directly without modifying your shell configuration.
Verification:
pod --version
If a version number is shown, CocoaPods is installed correctly.
-
Navigate to the iOS project directory:
cd /path-to-your-project/ios pod install
This installs iOS dependencies for your React Native project.
-
Return to the project’s root directory:
cd ..
-
Start the development server:
npm start
Once the server is running, you can launch the iOS Simulator with:
npx react-native run-ios
If you want to start a new React Native project, ensure you have a Node.js environment set up (either via Homebrew or nvm), then run:
npx react-native init MyNewApp
cd MyNewApp
npx react-native run-ios
Note:
The init
command will create a new React Native project with all the necessary scaffolding, including iOS and Android folders.
-
Updating Dependencies:
Runbrew update && brew upgrade
periodically to keep your packages current.
For nvm, you can simply install newer Node.js versions as needed. -
Troubleshooting:
- Check your PATH configurations in your shell’s config file.
- Update tools (
brew update
,npm update -g
). - Refer to the official React Native documentation for platform-specific troubleshooting tips.
With these steps completed, you should be ready to develop and run React Native applications on your Mac.