项目场景spawn cmd ENOENT错误


问题描述

例如使用Vue设置启动服务器自动打开浏览器报错如下

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! jian@0.1.0 start: `react-scripts start`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the jian@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:UsersasusAppDataRoamingnpm-cache_logs2019-09-03T13_39_22_260Z-debug.log

原因分析

spawn xxx ENOENT 就是电脑缺失这个系统变量,无法运行程序

拖到最下方解决这个bug方案

解决方案

1、在根目录package.json文件添加--open

"scripts": {
    "serve": "vue-cli-service serve --open",
    "build": "vue-cli-service build",
    "lint": "vue-cli-service lint"
  },

2、添加配置文件vue.config.js

module.exports = {
    devServer: {
        proxy:null,
        open:true	//添加配置
    }
}

3.在config文件下的index.js下修改配置autoOpenBrowser:true运行项目自启
在这里插入图片描述

最后发现上述方法是建于配置cmd的系统变量运行的,所以我们配置cmd系统环境变量就好了

在这里插入图片描述

原文地址:https://blog.csdn.net/weixin_45609702/article/details/128929105

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_39610.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注