我安装了一个新的React App并安装了npm install -g create-react-app
。
我试图重新安装节点软件包,删除了package-lock.json
,并用npm cache clean --force
清除了我的npm缓存,但是没有任何作用。
我在一个已经关闭的github问题中看到,它们看起来像npm ls react
,并且:
Marcelo-Rizzardo:test marcelo$ npm ls react
test@0.1.0 /Users/marcelo/Development/test
├── react@16.0.0
└─┬ react-scripts@1.0.14
└─┬ react-dev-utils@4.1.0
└─┬ react-error-overlay@2.0.2
└── react@16.0.0 deduped
如果我这样做,它将返回:
$ npm ls react
sosa-server@0.1.0 F:\Tim\Dokumente\Coding\sosa-server
`-- react@16.8.6
我的package.json
{
"name": "sosa-server",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/jest": "24.0.14",
"@types/node": "12.0.8",
"@types/react": "16.8.20",
"@types/react-dom": "16.8.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "^3.0.1",
"typescript": "3.5.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}
即时通讯将VSCode 1.35.1与git bash结合使用。
答案 0 :(得分:0)
我记得曾经有一次此错误,但是无法再次再现结果。我相信您已经阅读了以下答案:sh: react-scripts: command not found after running npm start。但是您仍然可以从中尝试两件事。
1)可能是您在错误的目录中运行了命令吗?这意味着您在客户端文件夹中运行命令(npm install,npm run start),而不是在全局范围内运行命令(可能不适用于您,但是我使用子客户端文件夹设置了我的react项目来完成所有前端操作)。很抱歉,阅读您在顶部提供的树以了解正在发生的事情时遇到了一些麻烦。
2)将npm更新到最新版本,然后删除节点模块目录,然后运行npm install。