Member-only story
Steps that should follow after creating React Native Project.
In this article we will talk about what are the steps that every beginner should follow to setup their React Native
projects.
These steps are for both , if you are creating a fresh project or having an existing projects.
Step → 1
The very first step is to create a React Native
project or have existing project so just clone it.
npx react-native init Poroject_Name
With the help of above command , we can create a React Native project
Existing Project
git clone https://www.username.github.com/project_name
Clone it if you have an existing project
Step → 2
After creating or cloning the project, open the project in VSCode
and install the node modules.
npm install
Sometimes , the above command doesn’t work when you clone the project and try to install Node Modules
.
npm install --force
When you put a --force
flag it will install the required packages.
Now next step is to setup the respective
Android
andIOS
project.