Node.jsとnpmが入っていない方は以下のURLを参考にダウンロードをしてください。
以下のサイトではWindowsまたはMac OSでのインストール手順が記載されていますので、こちらを参考に進めてください! https://kinsta.com/jp/blog/how-to-install-node-js/
バージョンは基本的に最新のLTS版(長期サポートバージョン、いわゆる安定版)をダウンロードしていただければ良いかと思います。
(私は今回ver17.9.0のものを使用してプロジェクトを作成しています。)
node -v
npm -v
npm i -g expo-cli
// mkdirコマンドでディレクトリ作成(名前はなんでもok🙆)
mkdir CAMP
cd CAMP
git clone https://github.com/miyakei1225/ReactNative-Hands-on-Firestore.git
cd ReactNative-Hands-on-Firestore
ls
npm install
【※もしcode .コマンドで立ち上げるのであれば設定必須🙆】 code . コマンドで現在のディレクトリのフォルダを開く便利なコマンドがあるため、ぜひこちらを参考に設定してみてください!
code .
https://qiita.com/naru0504/items/c2ed8869ffbf7682cf5c
App Store https://apps.apple.com/jp/app/expo-go/id982107779
Google Play https://play.google.com/store/apps/details?id=host.exp.exponent&hl=ja&gl=US&pli=1
expoコマンドでReact Nativeプロジェクトを作成したい時のコマンド
expo init my-first-react-native-app