我创建了一个Simple React App并成功,因为它已经在cmd上显示了愉快的黑客信息,但是当我在cmd上键入并运行“ npm start”时,它会出现很多错误。我尝试卸载,然后多次安装节点和npm,但仍然无法正常工作。这是错误消息
Creating a new React app in C:\myapp2.
Installing packages. This might take a couple of minutes.
Installing react, react-dom, and react-scripts...
> core-js@2.6.10 postinstall C:\myapp2\node_modules\babel-runtime\node_modules\core-js
> node postinstall || echo "ignore"
> core-js@3.2.1 postinstall C:\myapp2\node_modules\core-js
> node scripts/postinstall || echo "ignore"
+ react-dom@16.11.0
+ react@16.11.0
+ react-scripts@3.2.0
added 1475 packages from 693 contributors and audited 904933 packages in 828.526s
found 0 vulnerabilities
Success! Created myapp2 at C:\myapp2
Starting the development server...
events.js:187
throw er; // Unhandled 'error' event
^
Error: spawn cmd ENOENT
at Process.ChildProcess._handle.onexit (internal/child_process.js:264:19)
at onErrorNT (internal/child_process.js:456:16)
at processTicksAndRejections (internal/process/task_queues.js:80:21)
Emitted 'error' event on ChildProcess instance at:
at Process.ChildProcess._handle.onexit (internal/child_process.js:270:12)
at onErrorNT (internal/child_process.js:456:16)
at processTicksAndRejections (internal/process/task_queues.js:80:21) {
errno: 'ENOENT',
code: 'ENOENT',
syscall: 'spawn cmd',
path: 'cmd',
spawnargs: [ '/c', 'start', '""', '/b', 'http://localhost:3000/' ]
}
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! myapp2@0.1.0 start: `react-scripts start`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the myapp2@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\ASUS\AppData\Roaming\npm-cache\_logs\2019-11-13T21_57_29_371Z-debug.log
我希望你们能帮助我指出我应该在哪里进行更改,以便它可以成功运行。预先感谢!
答案 0 :(得分:2)
在使用create-react-app创建项目后
create-react-app name
您必须进入已创建的文件夹
cd name
然后运行
npm start
再次
答案 1 :(得分:0)
首先在一个驱动器(D:或E :)中创建一个文件夹,在命令提示符下将其打开,然后创建一个反应应用程序,例如:
npm create-react-app项目名称
或
npx-create-react-app项目名称 cd项目名称 npm start