安装 yarn 和 npx 后 create-react-app 不工作

create-react-app not working after installing yarn and npx working

我是新 mac 用户,我刚买了 mac m1,但遇到了一个奇怪的问题。 当我尝试 运行 命令

时,我安装了 yarn v3
yarn create-react-app app 

它给我这个错误

Usage Error: The project in /Users/home/package.json doesn't seem to have been installed - running an install there might help

'create-react-app' 是一个使用一些样板代码快速创建 React 应用程序的工具包。

您可以通过 2 个步骤创建 React 应用程序:

第 1 步:安装 create-react-app

第 2 步:使用 create-react-app 创建您的应用。

第 1 步: 要安装 create-react-app,请使用以下命令:

yarn global add create-react-app

对于第 2 步:使用它来创建您的 React 应用程序:

create-react-app app

您也可以在不全局安装 'create-react-app' 包的情况下创建应用程序:

npx create-react-app <app name>

供您参考:https://reactjs.org/docs/create-a-new-react-app.html#create-react-app