npm start error:npm start require(...) is not a function npm ERR! code ELIFECYCLE

npm start error:npm start require(...) is not a function npm ERR! code ELIFECYCLE

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

请试试这个。

  1. 删除nodes_modules
  2. npm install -g npm
  3. npm install & npm install -D
  4. npm run start

您的全局 environment.try 中似乎没有 react-scripts 这个:

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
  6. 开始

谢谢大家,最后我删除了src文件夹中的setupProxy.js文件,然后npm start就可以了。