Install Node.js

Node.js is required to run your React Native app and manage packages. Here’s how to install it:

Step 1: Download Node.js

Step 2: Install Node.js

Installing with the .msi installer:
  1. Double-click the downloaded .msi file
  2. Click Next through the installation wizard
  3. Accept the license agreement
  4. Important: Keep all default settings (especially “Add to PATH”)
  5. Click Install and wait for completion
  6. Click Finish when done
The .msi installer automatically adds Node.js to your system PATH, so you can use node and npm commands from any terminal window.

Step 3: Verify Installation

Open your terminal/command prompt and run:
node --version
You should see something like v18.17.0 or higher. Also check npm (comes with Node.js):
npm --version
You should see something like 9.6.7 or higher.

Troubleshooting

Command not found?
  • Restart your terminal/command prompt
  • On Windows, restart your computer
  • Make sure you selected Add to PATH during installation
Need to update?
  • Download the latest version from nodejs.org
  • Or use npm: npm install -g npm@latest