运行 npm run dev 时出错
Posted
技术标签:
【中文标题】运行 npm run dev 时出错【英文标题】:Error on running npm run dev 【发布时间】:2018-12-12 23:47:38 【问题描述】:我正在开发 MERN Web 应用程序并尝试同时运行客户端和 服务器与 npm run dev 但收到此错误。
发生错误时 执行命令:npm run clientError: spawn cmd.exe ENOENT 在 _errnoException (util.js:1022:11) 在 Process.ChildProcess._handle.onexit (internal/child_process.js:190:19) 在 onErrorNT (internal/child_process.js:372:16) 在 _combinedTickCallback (内部/进程/next_tick.js:138:11) 在 process._tickCallback (internal/process/next_tick.js:180:9) 在 Function.Module.runMain (module.js:695:11) 启动时(bootstrap_node.js:188:16) 在 bootstrap_node.js:609:3 执行命令时发生错误:npm run clientError: spawn cmd.exe ENOENT
//package.json in server
"name": "mern-list",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts":
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
,
"author": "",
"license": "ISC",
"dependencies":
"body-parser": "^1.18.3",
"concurrently": "^3.6.0",
"express": "^4.16.3",
"mongoose": "^5.2.0"
,
"devDependencies":
"nodemon": "^1.17.5"
package.json in client
"name": "client",
"version": "0.1.0",
"private": true,
"dependencies":
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-scripts": "1.1.4"
,
"scripts":
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
,
"proxy": "http://localhost:5000"
【问题讨论】:
嗨,我也遇到了同样的错误,我不知道为什么?是不是和windows有关....请在这里帮助我们? @abhishek 对此问题有何更新?你是怎么解决这个问题的? @TanmoySarkar 我在不同的 cmd 上运行客户端和服务器。然而,这不是一个正确的方法。 @AbhishekKonnur 那么如何在服务器中部署它?通过两个不同的命令? 只需在一个 cmd 中运行“node server.js”,在另一个 cmd 中运行“npm start”。 【参考方案1】:我遇到了类似的问题,我所做的是转到我的系统 Environment variables
并设置可能被错误删除的系统变量。
变量名 = PATH
变量值 = C:\Windows\System32\
转到> Control Panel\System and Security\System\Advance system setting\Enviroment variable
并设置系统变量路径C:\Windows\System32\
变量并重新启动系统。
【讨论】:
【参考方案2】:看看你的client/package.json。 你必须有这些脚本:
"scripts":
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
【讨论】:
【参考方案3】:在您的服务器 package.json 上使用此行而不是当前行
"dev": "concurrently \"npm run server\" \"cd client && npm start\""
事情可能会因为你的 dev 命令而发生,它被指定为客户端的 npm start 但它不知道在哪里可以找到它。
【讨论】:
以上是关于运行 npm run dev 时出错的主要内容,如果未能解决你的问题,请参考以下文章
@生产脚本失败。运行 npm run production 时出错