Suhel Hasan 🚀
10
Aug 8 '20
If you are new to mobile development, the easiest way to get started is with Expo CLI.
It is a very easy process, just follow the steps below one by one.
Node.js (download)
Now we can use npm(comes default with Node.js) to install the Expo CLI
npm install -g expo-cli
it will take a little bit of time to install EXPO CLI in your system globally.
expo init MyProject
cd MyProject
npm start
This will start a development server for you
Install the Expo client app on your iOS or Android phone and connect to the same wireless network as your computer. 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.
Now that you have successfully run the app, let's modify it. Open App.js in your text editor of choice and edit some lines. The application should reload automatically once you save your changes.
Congratulations! You've successfully run and modified your first React Native app.
Hope you have enjoyed this and gain something from it. Waiting for your feedback. ✔
Follow me on Twitter — @javascript_bug to check out my other cool posts.
Happy Coding! 💻 😀