npm start错误:npm start require(...)不是函数npm ERR!代码ELIFECYCLE

时间:2020-10-28 07:17:45

标签: reactjs npm-start

刚开始学习react js并完成了一些页面,但是今天运行“ npm start”时出现错误。自上次以来我什么都没改变... 有人可以帮我吗?谢谢。

enter image description here

enter image description here

enter image description here

3 个答案:

答案 0 :(得分:1)

谢谢大家,最后我删除了src文件夹中的setupProxy.js文件,然后启动了npm。

答案 1 :(得分:0)

请尝试这个。

  1. 删除nodes_modules
  2. /sbin/depmod -a
  3. npm install -g npm
  4. npm install & npm install -D

答案 2 :(得分:0)

您似乎在全局环境中没有任何反应脚本。请尝试以下操作:

npm install -g react-scripts

npm install --save react react-dom react-scripts

如果上述方法不起作用,请尝试

  1. 删除npm和npm-cache 目录...(不用担心,以后可以全局安装npm)
  2. 返回您的应用程序目录并删除node_modules文件夹
  3. 现在输入npm install以安装依赖项(如果已创建,请删除package-lock.json)
  4. 现在运行npm install --save react react-dom react-scripts
  5. npm start开始使用