簡體   English   中英

angularjs項目的npm啟動問題

[英]npm start issues for angularjs project

在網站上工作時,當我開始遇到運行npm start的問題時。 這是一個有角度的項目。 誰能幫我? 昨天一切正常,我已經嘗試了所有在線操作,以下錯誤:

> $ npm start
>     
>     > angular-seed@0.0.0 prestart C:\dev\HyprPortal
>     > npm install
>     
>     npm WARN package.json Dependency 'karma' exists in both dependencies and devDependencies, using 'karma@^1.0.0' from
> dependencies
>     
>     > angular-seed@0.0.0 postinstall C:\dev\HyprPortal
>     > bower install
>     
>     
>     > angular-seed@0.0.0 start C:\dev\HyprPortal
>     > http-server -a localhost -p 8000 -c-1 ./app
>     
>     events.js:141
>           throw er; // Unhandled 'error' event
>           ^
>     
>     Error: listen EADDRINUSE 127.0.0.1:8000
>         at Object.exports._errnoException (util.js:870:11)
>         at exports._exceptionWithHostPort (util.js:893:20)
>         at Server._listen2 (net.js:1234:14)
>         at listen (net.js:1270:10)
>         at net.js:1379:9
>         at GetAddrInfoReqWrap.asyncCallback [as callback] (dns.js:64:16)
>         at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:83:10)
>     
>     npm ERR! Windows_NT 10.0.10586
>     npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "start"
>     npm ERR! node v4.4.5
>     npm ERR! npm  v2.15.5
>     npm ERR! code ELIFECYCLE
>     npm ERR! angular-seed@0.0.0 start: `http-server -a localhost -p 8000 -c-1 ./app`
>     npm ERR! Exit status 1
>     npm ERR!
>     npm ERR! Failed at the angular-seed@0.0.0 start script 'http-server -a localhost -p 8000 -c-1 ./app'.
>     npm ERR! This is most likely a problem with the angular-seed package,
>     npm ERR! not with npm itself.
>     npm ERR! Tell the author that this fails on your system:
>     npm ERR!     http-server -a localhost -p 8000 -c-1 ./app
>     npm ERR! You can get information on how to open an issue for this project with:
>     npm ERR!     npm bugs angular-seed
>     npm ERR! Or if that isn't available, you can get their info via:
>     npm ERR!
>     npm ERR!     npm owner ls angular-seed
>     npm ERR! There is likely additional logging output above.
>     
>     npm ERR! Please include the following file with any support request:
>     npm ERR!     C:\dev\HyprPortal\npm-debug.log

您的錯誤是EADDRINUSE 127.0.0.1:8000 換句話說- ERROR: ADDRESS IN USE 127.0.0.1:8000 這意味着端口8000上已經在偵聽某些內容。

確保您沒有嘗試多次運行npm start 或者,您可以在管理命令提示符中使用netstat -ab來查看該端口上正在偵聽的內容,並netstat -ab該進程或更改節點服務器的端口。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM