node 報錯
Starting child process with 'node web.js'
events.js:183
throw er; // Unhandled 'error' event
^
Error: listen EADDRINUSE :::8000
at Object._errnoException (util.js:992:11)
at _exceptionWithHostPort (util.js:1014:20)
at Server.setupListenHandle [as _listen2] (net.js:1355:14)
at listenInCluster (net.js:1396:12)
at Server.listen (net.js:1480:7)
at Object.<anonymous> (C:\Users\Administrator\Desktop\node\node練習\解決異步\web.js:39:4)
at Module._compile (module.js:652:30)
at Object.Module._extensions..js (module.js:663:10)
at Module.load (module.js:565:32)
at tryModuleLoad (module.js:505:12)
Program node web.js exited with code 1
錯誤原因:
端口號被占用。
解決方法:
修改端口號,或者干掉端口號,重新啟動項目
干掉端口號方法:
1.進入cmd命令窗口,寫netstat -ano|findstr "8080"
2.taskkill -PID 13512 -F