how to end ng serve or firebase serve

后端 未结 13 2010
渐次进展
渐次进展 2021-01-29 23:05

I\'ve been doing web development with Angular2 and have been using both Angular2 and Firebase to run local servers. I haven\'t been able to find a command similar to typing quit

13条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-01-29 23:49

    I was able to stop via this on Windows for Angular 8:

    Step 1: Find 4200 process

    netstat -ano | findstr :4200
    

    Step 2: Kill that process:

    taskkill /PID  /F
    

提交回复
热议问题