错误:纱线启动 - 错误命令“start”未找到

IT技术 reactjs npm yarnpkg
2021-04-21 07:14:18

我正在尝试学习 React,并且我正在使用一个私有仓库来开始它。

yarn start在 repo 的目录中运行,但收到错误消息:

yarn run v1.13.0
error Command "start" not found.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

我已经安装了节点和纱线。

对于节点:

v10.15.0
node is /usr/local/bin/node

对于纱线:

1.13.0
yarn is /usr/local/bin/yarn

我尝试重新安装节点和纱线,但收到相同的错误消息。此外,我试图通过消除纱线机会,yarn cache clean但似乎没有任何效果。

package.json包含以下内容:

{
  "name": "02-Manipulating-Strings",
  "version": "1.0.0",
  "author": "ssaunier",
  "license": "UNLICENSED",
  "private": true,
  "devDependencies": {
    "eslint": "^4.7.2",
    "eslint-config-airbnb-base": "^12.0.0",
    "eslint-plugin-import": "^2.7.0",
    "jest": "^21.1.0"
  },
  "scripts": {
    "test": "(eslint lib || true) && jest"
  }
}

该目录按以下方式组织:

项目目录

6个回答

文件start的脚本中没有命令package.json

"scripts": {
  "start": "some command to be run", // you need to add this line
  "test": "(eslint lib || true) && jest"
}

也许您想改为运行test命令 - npm test/ yarn test

如果我试着跑:node lib/01_dash_insertion.js什么也没有发生。所以我尝试安装npm install --save-dev webpack但仍然无法运行任何js文件。
2021-06-06 07:14:18
这也是我的想法,但我有 2 个评论。1) 我打开了私人package.json仓库的解决方案文件,soultion匹配我的(加上,昨天 eberything 正在工作)2)lib如果我不运行,我如何运行文件夹中的 JS 文件yarn start我试过,npm run但我得到:Lifecycle scripts included in 02-Manipulating-Strings: test (eslint lib || true) && jest
2021-06-07 07:14:18
"start": "webpack-dev-server --mode 开发"
2021-06-14 07:14:18

赶紧跑

yarn add react-scripts

感谢用户的洞察力解决了这个问题:Tsvetan Ganev。

我试图运行一个不在我的脚本中的命令。具体来说,yarn start不在scripts文件部分package.json为了解决这个问题,我在scripts

"start": "webpack-dev-server --mode development",
请标记茨维坦·加涅夫。如果它有助于解决您的问题,请回复作为答案。
2021-06-07 07:14:18

您也可以尝试运行第一npm install,然后npm run或第一yarn,然后yarn start

我尝试使用纱线和纱线启动,但仍然出现以下错误。yarn run v1.22.10 警告 package.json: No license field error 找不到命令“start”。info 访问yarnpkg.com/en/docs/cli/run获取有关此命令的文档。
2021-05-24 07:14:18
尝试在 package.json 中的“脚本”中添加:“start”:“react-scripts start”
2021-06-17 07:14:18

我有同样的问题找不到启动命令。我按照以下说明重新创建react应用程序

. Go to your parent folder in cmd
. Type yarn add create-react-app
. And yarn create-react-app FolderName

安装后纱线启动将工作。

安装react文件夹后