node环境:Error listen EADDRINUSE :::3000
错误:错误原因:其实是3000端口被其他应用程序占用了,只要找到占用该端口的应用程序,杀死它,就好了。netstat -o -n -a | findstr :3000taskkill /F /PID 115148注:15148换成你的占用3000端口的程序PID参考:https://teamtreehouse.com/community/why-is-there...
·
错误: 
错误原因:其实是3000端口被其他应用程序占用了,只要找到占用该端口的应用程序,杀死它,就好了。
netstat -o -n -a | findstr :3000
taskkill /F /PID 115148
注:15148换成你的占用3000端口的程序PID 
参考:https://teamtreehouse.com/community/why-is-there-an-error-on-clicking-the-play-button-in-debugger
更多推荐


所有评论(0)