纱线启动-找不到命令“启动”

时间:2020-06-26 10:37:37

标签: json reactjs npm yarnpkg

yarn start导致错误,提示找不到命令“启动”。在我的package.json文件中,没有脚本的标签,可能是问题所在。请提出解决方案。

我正在尝试安装react,命令为:

npm install -g create-react-app@1.5.2
create-react-app confusion
yarn start

cmd错误: command prompt

package.json:

  "name": "confusion",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "react": "^16.13.1",
    "react-dom": "^16.13.1",
    "react-scripts": "3.4.1"
  }
}

1 个答案:

答案 0 :(得分:1)

  1. npm uninstall -g create-react-app //卸载旧的create-react-app版本(以您的情况为v1.5.2),以确保npx使用步骤2中的最新版本。
  2. npx create-react-app my-react-app-name // npx无需全局安装即可安装最新版本的create-react-app。它包含在npm中,因此无需安装。如果愿意,可将 my-react-app-name 替换为您想要调用项目的任何内容
  3. cd my-react-app-name
  4. yarn start