firebase 命令yarn start not found在从github克隆项目后

u0sqgete  于 2023-06-24  发布在  Yarn
关注(0)|答案(2)|浏览(167)

我从Github上克隆了一个项目。当我尝试运行yarn时,它成功地安装了所需的软件包。但是当我尝试运行yarn start时,我得到了错误。请检查下面的截图。我搜索了很多,我知道packageiderjson没有一个开始对象,所以我复制粘贴许多从互联网后,寻找解决方案,但没有一个是工作。如果你能帮我修复我的bug,我会很感激的。

evrscar2

evrscar21#

您需要升级package.json文件。
1.按照以下步骤并运行命令
1.首先运行“npm i”或“yarn”命令
1.如果使用npm:

"npm i react react-dom react-router-dom react-scripts"

如果你使用Yarn:

"yarn add react react-dom react-router-dom react-scripts"

上面的命令将在您的项目中安装最新的软件包。
1.确保在package.json文件中包含以下脚本:

"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},

1.现在运行“yarn start”或“npm start”命令。
我希望这能奏效。百分百

wljmcqd8

wljmcqd82#

通常在创建新项目时,在“package.json”中会有这样的行:

"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},

尝试手动添加
“start”:“react-scripts start”,

相关问题