0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Expoの使い方

Last updated at Posted at 2023-01-24

Expoのインストール

講義で使用した環境ツールは2020年ものなので,今時2022年ものに変更しようかと思いましたが,Expo側が対応していなかった・・・

  1. Expoのアンインストール
    sudo npm un -g expo-cli
  2. node jsのアンインストール
  3. 今度はHomebreでインストール
  4. Homebreで最新のLTS Nodejsをインストールする
  5. expo-cliをインストールしようとするるもNodejsが新しすぎるということでエラー
    required: { node: '>=12 <=16' },
  6. Nodejsをアンインストールしてnodejsのバージョン16の安定板をダウンロード

プロジェクトの作成

以下コマンドを実行する

npx create-expo-app {プロジェクト名} --template

テンプレートを選択する
選択するテンプレートは特にこだわりがなかったらNavigationでいいんじゃないかな.全部入ってるし
テンプレートのGithubページ
テンプレートの名前見るとexpo initのテンプレートっぽい?

パッケージのインストール

expo installや npm installなどありますが,
Expo SDK 46以降は下のコマンドらしい.
どこかで見た記事が見当たらないので信憑性薄です.

npx expo install {パッケージ名}

そのた

expo initとcreate-react-native-appの違い

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?