1. install npm
  2. install react native cli => npm install -g
    react-native-cli && npm install -g react-native (admin or sudo)
  3. react-native init MyProject
  4. cd Myproject
  5. react-native run-ios or run-android
Answer from tetar on Stack Overflow
🌐
React Native
reactnative.dev › docs › environment-setup
Get Started with React Native · React Native
The Expo team works in close collaboration with the React Native team at Meta to bring the latest React Native features to the Expo SDK. The team at Expo also provides Expo Application Services (EAS), an optional set of services that complements Expo, the Framework, in each step of the development process. To create a new Expo project, run the following in your terminal:
🌐
DEV Community
dev.to › wafa_bergaoui › how-do-i-start-a-new-react-native-app-21m3
How Do I Start a New React Native App? - DEV Community
December 23, 2024 - ... Familiarize yourself with these components to navigate your project efficiently. ... Scan the QR code with the Expo Go app on your device or open it in an emulator. ... npm install @react...
🌐
Educative
educative.io › answers › how-to-create-a-new-react-native-project
How to create a new React Native project
Firstly, install expo-cli by using the following command: ... Replace YourProjectName with the desired name for your project. This command will create a new react-native project with the specified name.
🌐
Expo Documentation
docs.expo.dev › tutorial › create-your-first-app
Create your first app - Expo Documentation
If you are not familiar with them, check out the TypeScript Handbook and React's official tutorial. ... We'll use create-expo-app to initialize a new Expo app. It is a command line tool to create a new React Native project.
🌐
YouTube
youtube.com › dave gray
Create an App with React Native - YouTube
Learn how to create an app with React Native and the Expo framework in this tutorial. This video is part 2 of a React Native for Beginners series where you l...
Published   October 11, 2024
🌐
React Native Archive
archive.reactnative.dev › docs › getting-started
Getting Started · React Native Archive
Use the React Native command line interface to generate a new React Native project called "AwesomeProject": ... This is not necessary if you are integrating React Native into an existing application, if you "ejected" from Create React Native App, or if you're adding Android support to an existing React Native project (see Platform Specific Code).
🌐
GeeksforGeeks
geeksforgeeks.org › react native › what-are-the-steps-to-create-first-react-native-app
What are the steps to create first React Native App ? - GeeksforGeeks
May 4, 2025 - There are many ways to create a React Native app, but we will discuss a couple of ways in this article. Note: If you wish to create a project in JavaScript, follow Method 1.
Find elsewhere
🌐
GitHub
microsoft.github.io › react-native-windows › docs › getting-started
Get Started with Windows · React Native for Windows
npx --yes @react-native-community/cli@latest init <projectName> --version "^0.80.0" The command will create your project in a new sub-directory, which you must enter before continuing:
🌐
Expo Documentation
docs.expo.dev › more › create-expo
create-expo-app - Expo Documentation
create-expo-app is a command-line tool to create and set up a new Expo and React Native project.
🌐
Reddit
reddit.com › r/reactnative › how would you start a new react native project?
r/reactnative on Reddit: How would you start a new React Native project?
May 10, 2025 -

Hey folks, if you were starting a new application, how would you structure it? I'm coming from the web world and wondering about the state of the art in React Native. I'm a bit out of the loop and would love to hear your recommendations.

I see there are a lot of new features, like the new architecture (https://reactnative.dev/blog/2025/02/19/react-native-0.78) and React 19 compiler support (https://reactnative.dev/blog/2025/02/19/react-native-0.78), but I haven't used those yet.

🌐
Medium
medium.com › @ankhi. › creating-your-first-react-native-project-c7c9f70b71fc
Creating Your First React Native Project? | by Ankhi | Medium
September 4, 2024 - So, as a fellow React Native newbie, I don’t want you to QUIT. That’s why I am passing along some important tips to make your first experience smoother: Open your favorite code editor, make sure you have the latest node version installed on your PC, then type: ... 3. For now, you’ll be working exclusively with the index.tsx file, which is located in the app → (tabs) folder within your project folder.
🌐
npm
npmjs.com › package › create-react-native-app
create-react-native-app - npm
Latest version: 4.0.0, last published: a year ago. Start using create-react-native-app in your project by running `npm i create-react-native-app`. There are 5 other projects in the npm registry using create-react-native-app.
      » npm install create-react-native-app
    
Published   Jul 02, 2024
Version   4.0.0
Author   Expo
🌐
GitHub
github.com › expo › create-react-native-app
GitHub - expo/create-react-native-app: Create React Native apps that run on iOS, Android, and web
Create React Native apps that run on iOS, Android, and web - expo/create-react-native-app
Starred by 13.3K users
Forked by 1.4K users
Languages   JavaScript
🌐
Medium
medium.com › @swift3.0devlopment › creating-your-first-react-native-app-a-step-by-step-guide-for-beginners-8892f10483a0
Creating Your First React Native App: A Step-by-Step Guide for Beginners | by CDDeveloper | Medium
September 20, 2023 - 2. Create a new React Native project: Open a command prompt or terminal and navigate to the desired directory. 75 followers · ·135 following · Nothing comes for free. You must gain everything.
🌐
TutorialsPoint
tutorialspoint.com › react_native › react_native_environment_setup.htm
React Native - Environment Setup
After executing the above command, a folder with specifies name is created with the following contents. Make sure you have Python NodeJS and jdk8 installed in your system if not, install them. In addition to these it is recommended to install latest version of yarn to avoid certain issues. You can install react native command line interface on npm, using the install -g react-native-cli command as shown below. ... To verify the installation browse through the project folder and try starting the project using the start command.
🌐
Codemagic blog
blog.codemagic.io › step-by-step-guide-to-kick-off-your-first-react-native-project
Create React Native app using Expo CLI or React Native CLI | Codemagic Blog
August 5, 2020 - On Android, use the Expo app to scan the QR code from your terminal to open your project. On iOS, use the built-in QR code scanner of the Camera app. Once you’ve set up Android Studio or Xcode, you can launch your app on an Android virtual device or real device using USB by running: ... Run the following commands to create a new React Native project named FirstProject using React Native CLI: