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:
🌐
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.
🌐
React
react.dev › learn › creating-a-react-app
Creating a React App – React
To create a new React Router framework project, run: ... React Router is maintained by Shopify. Expo is a React framework that lets you create universal Android, iOS, and web apps with truly native UIs. It provides an SDK for React Native that makes the native parts easier to use.
🌐
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...
🌐
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
🌐
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.
Find elsewhere
🌐
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.
🌐
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.
🌐
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.
🌐
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.

🌐
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.81.0" The command will create your project in a new sub-directory, which you must enter before continuing:
🌐
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.
🌐
DEV Community
dev.to › birajgtm › building-your-first-react-native-app-a-step-by-step-guide-1ibe
Building Your First React Native App: A Step-by-Step Guide - DEV Community
July 24, 2024 - With React Native, you can use JavaScript and React to create mobile apps that run on both Android and iOS devices. In this guide, I'll walk you through the process of building your first React Native app, from setting up your development environment to deploying your app. ... Before we dive into app development, let's set up our development environment. ... Visit the Node.js website and download the latest version of Node.js. This will also install npm, which we'll use to manage our project ...