Skip to content

Commit

Permalink
📝: deprecatedな npx react-native コマンドを npx @react-native-community/cli…
Browse files Browse the repository at this point in the history
… に変更 (#1332)

## ✅ What's done

- [プロジェクトの作成](https://ws-4020.github.io/mobile-app-crib-notes/react-native/learn/getting-started/create-project/)で`npx react-native init`コマンドの代わりに`npx @react-native-community/cli init`コマンドを使用
   - 理由: 2024/12/31 で 動作が変わり動かなくなる予定のため
- npmではなくyarnを利用したい場合用の備考を削除
   - 理由: --pm オプションだけでなく、他にも変更しないと動かない&動作確認ができていないため
  • Loading branch information
tksugimoto authored Dec 26, 2024
1 parent 592e9fb commit 9582706
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions website/docs/react-native/learn/getting-started/create-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,26 +21,17 @@ title: プロジェクトの作成
:::

```bash
npx react-native@0.75.4 init --npm --template https://github.com/ws-4020/rn-spoiler#{@inject: rnSpoilerTag} <YourAppName>
npx @react-native-community/cli init --pm 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で動作します。

:::info
[npm](https://www.npmjs.com/)ではなく[Yarn](https://yarnpkg.com/)を利用したい場合は、`--npm`というオプションを削除してください。Yarnがインストールされている場合は、Yarnを利用してパッケージがインストールされます。

```bash
npx [email protected] init --template https://github.com/ws-4020/rn-spoiler#{@inject: rnSpoilerTag} <YourAppName>
```

:::

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

```console
Need to install the following packages:
react-native
@react-native-community/cli
Ok to proceed? (y)
```

Expand Down

0 comments on commit 9582706

Please sign in to comment.