新创建项目的 "npm start" 错误

Error in "npm start" for newly created project

我刚刚创建了一个 React js 项目。然后我运行 "npm start" for 运行 这个项目。这个错误来了,我现在被困在这里 1 天了。我已经有其他的 reactJS 项目了。所有其他项目都出现此错误。这就是为什么我在新项目中尝试它。所以我通过创建新项目来确认。错误不在我的项目中。

我已经试过了。

错误是,

C:\Suranga\ReactJS\JMSL\my_app>npm start

> my_app@0.1.0 start C:\Suranga\ReactJS\JMSL\my_app
> react-scripts start
> Starting the development server...
events.js:174
      throw er; // Unhandled 'error' event
      ^
Error: spawn cmd ENOENT
    at Process.ChildProcess._handle.onexit (internal/child_process.js:240:19)
    at onErrorNT (internal/child_process.js:415:16)
    at process._tickCallback (internal/process/next_tick.js:63:19)
Emitted 'error' event at:
    at Process.ChildProcess._handle.onexit (internal/child_process.js:246:12)
    at onErrorNT (internal/child_process.js:415:16)
    at process._tickCallback (internal/process/next_tick.js:63:19)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! my_app@0.1.0 start: `react-scripts start`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the my_app@0.1.0 start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\Administrator\AppData\Roaming\npm-cache\_logs19-09-10T15_10_01_727Z-debug.log
C:\Suranga\ReactJS\JMSL\my_app>

首先确保您位于使用 create-react-app 创建的正确应用程序文件夹中。否则,在文件夹中尝试 运行 npm install

出于存档目的,这里是 OP 报告的 the solution

降级到 react-scripts 2.1.8.

create-react-app my-app
cd my-app
npm install react-scripts@2.1.8
npm start

其他人仍然遇到同样的问题。对于这些项目,以前的解决方案并不成功。最后我按照以下步骤完成了。

1) 为 windows 安装 Chocolatey (https://chocolatey.org/)
2) 使用 choco 安装 npm ("choco install nodejs-latest")
3) npm 启动