Starting my React Native Project
May 22, 2021
First, install the expo command line interface
npm install expo-cli -global
Then you can create your first project using:
expo init MyFirstProject
For this example I am choosing the tabs template to get started.
Once the project is created, you can go into the directory and start up the web version of your app with the following.
cd MyFirstProject
npm run web
This should open two new tabs. The first is a bundler app that logs the build phase.
The second is the web app which should look something like this.