Skip to content

Commit

Permalink
📝: fix: npx react-native init が失敗する問題に暫定対処 (#1331)
Browse files Browse the repository at this point in the history
## ✅ What's done

- [x] [プロジェクトの作成 | Fintan » Mobile App
Development](https://ws-4020.github.io/mobile-app-crib-notes/react-native/learn/getting-started/create-project/)
の `npx react-native`コマンドにversionを明示(`@0.75.4`)
   - 理由: v0.76.0以降だと失敗するようになったため


## ⏸ What's not done

- 恒久対応(2024/12/31までに必要)
  • Loading branch information
tksugimoto authored Nov 25, 2024
1 parent 8e25527 commit 592e9fb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ title: プロジェクトの作成
:::

```bash
npx react-native init --npm --template https://github.com/ws-4020/rn-spoiler#{@inject: rnSpoilerTag} <YourAppName>
npx react-native@0.75.4 init --npm --template https://github.com/ws-4020/rn-spoiler#{@inject: rnSpoilerTag} <YourAppName>
```

RN Spoilerは、Expoの[テンプレート](https://github.com/expo/expo/tree/master/templates)をベースにしているので、このあとの[アプリの実行](./launch-created-app.mdx)で紹介しているExpo Goで動作します。
Expand All @@ -30,13 +30,13 @@ RN Spoilerは、Expoの[テンプレート](https://github.com/expo/expo/tree/ma
[npm](https://www.npmjs.com/)ではなく[Yarn](https://yarnpkg.com/)を利用したい場合は、`--npm`というオプションを削除してください。Yarnがインストールされている場合は、Yarnを利用してパッケージがインストールされます。

```bash
npx react-native init --template https://github.com/ws-4020/rn-spoiler#{@inject: rnSpoilerTag} <YourAppName>
npx react-native@0.75.4 init --template https://github.com/ws-4020/rn-spoiler#{@inject: rnSpoilerTag} <YourAppName>
```

:::

:::info
初めて`npx react-native init ...`を実行すると、次のように不足しているパッケージをインストールするかと聞かれます。`react-native`をインストールしようとしていれば問題ないので、エンターキーを押して実行してください。
初めて`npx react-native@0.75.4 init ...`を実行すると、次のように不足しているパッケージをインストールするかと聞かれます。`react-native`をインストールしようとしていれば問題ないので、エンターキーを押して実行してください。

```console
Need to install the following packages:
Expand Down

0 comments on commit 592e9fb

Please sign in to comment.