npm start 上的 webpack-dev-server 错误 [英] webpack-dev-server error on npm start

查看:88
本文介绍了npm start 上的 webpack-dev-server 错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在 ng2-admin 上运行 npm start,一切正常,直到我执行 npm update 以尝试更新包,

I am trying to run npm start on ng2-admin,all was working untill I did npm update to try to update the pacakages,

之后 npm 启动并出现错误:

after that did npm start and have an error:

webpack-dev-server --config config/webpack.dev.js --progress --profile --watch --content-base src/
10% building modules 3/3 modules 0 activeError: listen EADDRINUSE 127.0.0.1:8080
at Object.exports._errnoException (util.js:1026:11)
at exports._exceptionWithHostPort (util.js:1049:20)
at Server._listen2 (net.js:1257:14)
at listen (net.js:1293:10)
at net.js:1403:9
at GetAddrInfoReqWrap.asyncCallback [as callback] (dns.js:62:16)
at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:81:10)
npm ERR! Darwin 15.5.0
npm ERR! argv "/Users/vm/versions/node/v6.9.1/bin/node" node/v6.9.1/bin/npm" "run" "server:dev"
npm ERR! node v6.9.1
npm ERR! npm v3.10.8
npm ERR! code ELIFECYCLE
npm ERR! ng2-admin@0.7.0 server:dev: webpack-dev-server --config config/webpack.dev.js --progress --profile --watch --content-base src/
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the ng2-admin@0.7.0 server:dev script 'webpack-dev-server --config config/webpack.dev.js --progress --profile --watch --content-base src/'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the ng2-admin package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! webpack-dev-server --config config/webpack.

推荐答案

将 package.json 中的依赖更改为

change dependency in package.json to

"webpack-dev-server": "2.1.0-beta.10",而不是像

"webpack-dev-server": "2.1.0-beta.10", Instead of something like

"webpack-dev-server": "^2.1.0-beta.9",

"webpack-dev-server": "^2.1.0-beta.9",

之后运行 npm install 或 npm update.

run npm install or npm update afterwards.

这篇关于npm start 上的 webpack-dev-server 错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆