React Native installation

Hello everyone here is a brief getting started for React Native.
First thing you need to have installed npm package manager, if you haven’t installed it yet, it is part of node js, so please follow the link to install it: https://nodejs.org/it/

Then we have to install yarn package manager in the terminal:

npm install -g yarn

After that you have installed npm package manager you have to type in your terminal the following command to install expo:

npm install -g expo-cli

After that, you can create your project typing in the terminal the following:

expo init MyProject
cd MyProject
npm run start

At this point you need to install Android Studio for Android and XCode for IOS.

At this point you can navigate through your project files and start to build your first React Native Application

Thanks

--

--