This page will help you write your first code in React Native. So lets get started....
With Create React Native App we can easily start building apps without installing X-code or Android Studio.
Here we will use npm to install create react native utility.
npm install -g create-react-native-app
Once done, run following command to create your 1st project:
create-react-native-app MyProject
"MyProject" is the name of the project.
Change directory to the project folder as follows:
cd MyProject and type:
npm start.
This will run the project. And you successfully ran your 1st project.