xxxxxxxxxx
// the most comman way of starting a react native app is,
npx create-expo-app YourApp
// as of 6th july 2023 it has many deprecated dependencies
// run
npm audit
//if it shows any vulnerability consider using
npx create-react-native-app YourApp
// and selecting expo template
xxxxxxxxxx
$ npm i -g create-react-native-app
$ create-react-native-app my-project
$ cd my-project
$ npm start