首页 > 编程语言 >vue2.0运行导入的项目出现node:events:491 throw er; // Unhandled ‘error‘ event错误提示解决办法

vue2.0运行导入的项目出现node:events:491 throw er; // Unhandled ‘error‘ event错误提示解决办法

时间:2023-06-08 20:07:28浏览次数:54  
标签:node 8080 event build run throw 端口号 er

错误提示:

App running at:

 - Local:   http://localhost:8080/

 - Network: unavailable

 Note that the development build is not optimized.

 To create a production build, run npm run build.

node:events:491 

throw er; // Unhandled 'error' event

vue2.0运行导入的项目出现node:events:491 throw er; // Unhandled ‘error‘ event错误提示解决办法_App

在尝试过关闭占用端口后还是无法解决,最后找到vue.config.js文件中 

vue2.0运行导入的项目出现node:events:491 throw er; // Unhandled ‘error‘ event错误提示解决办法_端口号_02

将open中的true改为false即可正常运行

vue2.0运行导入的项目出现node:events:491 throw er; // Unhandled ‘error‘ event错误提示解决办法_端口号_03

vue2.0运行导入的项目出现node:events:491 throw er; // Unhandled ‘error‘ event错误提示解决办法_App_04

至于端口号我这边是指定为8080的了

在package.json中的dev中加 --port 8080即可指定端口号

vue2.0运行导入的项目出现node:events:491 throw er; // Unhandled ‘error‘ event错误提示解决办法_错误提示_05

标签:node,8080,event,build,run,throw,端口号,er
From: https://blog.51cto.com/u_15997490/6442621

相关文章

  • vue2.0运行导入的项目出现node:events:491 throw er; // Unhandled ‘error‘ event错
    错误提示:Apprunningat: -Local: http://localhost:8080/ -Network:unavailable Notethatthedevelopmentbuildisnotoptimized. Tocreateaproductionbuild,runnpmrunbuild.node:events:491 thrower;//Unhandled'error'event在尝试过关闭占用端......
  • nvm控制node版本
    nvm控制node版本​ ubuntu中使用yarn下载插件报错,@vitejs/[email protected]:Theengine"node"isincompatiblewiththismodule.Expectedversion"^14.18.0||>=16.0.0".Got"14.16.0"解决方案,nvm(NodeVersionManager)切换node版本:#查看所有node版本......
  • Vue全局事件总线(GlobalEventBus)
    Vue全局事件总线1、一种组件间通信的方式,适用于任意组件间通信。2、安装全局事件总线//main.js中安装全局事件总线newVue({render:h=>h(App),beforeCreate(){Vue.prototype.$bus=this//安装全局事件总线,$bus就是当前的vue实例}}).$mount('#app')......
  • nodejs package.json
    package.json是用来识别项目并且处理项目的依赖关系的{"name":"名",//包名字"version":"1.0.0",//版本"description":"描述","main":"index.js",//入口文件"scripts":{//指定运行脚本......
  • docker启动node.js项目
    原文链接:https://www.cnblogs.com/yalong/p/17463847.html这里使用koa2做为演示项目,使用Dockerfile构建Docker镜像,项目Git地址:仓库地址安装Docker网上都有教程可以自行查找,这里演示的环境是在mac下进行的在node项目根目录下创建Dockerfile文件项目目录如下:Docke......
  • 【解决问题】libevent 编译时报错 Makefile:1708: test/.deps/test_regress-tinytest.
    1开发环境linux版本:统信UOS1030(可以认为是特殊的ubuntu)开发语言:C++2报错现象截图:报错语句:make:进入目录“/home/depend/libevent-2.1.11-stable”Makefile:1708:test/.deps/test_regress-tinytest.Po:没有那个文件或目录make:***没有规则可制作目标“te......
  • 13_How to Deploy NodeJs app on Ubuntu in Production
     地址:https://www.codewithharry.com/blogpost/deploy-nodejs-app-on-ubuntu/ HowtodeployaNode.jsapplicationinproductionInthispost,wewillseehowtorunanddeployNodeJSappsinproduction.Followthestepsbelow:Step1-InstallNodejsLet�......
  • window安装EMQX和node.js
    进入网站https://www.emqx.io/zh/downloads?os=Windows进入nodejs官网https://nodejs.cn/download/下载......
  • Node_学习笔记
    不同技术点:24px红色加粗标题一技术点子模块:18px黑色加粗标题二子模块在细分:16px  缩进标题三普通文字:14pxNodeJS入门NodeJS是什么:Node.js就是一款应用程序,是一款软件,它可以运行JavaScriptCDM常用命令: 切换盘符:C:D: 切换工作目录:cd......
  • libevent网络库
    libevent动态库的编译链接安装过程:对.tar.gz包解压安装切换到源码对应的文件夹cd/lib....-stable可能需要yuminstalllibssl-dev./configure会生成一个Makefile文件makemakeinstall注意看libevent的includelib等文件放在哪使用gcc编译:gcc-std=gnu99-......