DBILITY

독거 가능성 100% 노후에 라면값이라도 하게 센스를 발휘합시다!😅
Please click on the ad so that I can pay for ramen in my old age!
点击一下广告,让老后吃个泡面钱吧!
老後にラーメン代だけでもするように広告を一回クリックしてください。

npm start Something is already running on port 3000. 본문

front-end & ui/npm

npm start Something is already running on port 3000.

DBILITY 2021. 12. 13. 13:03
반응형

무언가를 하다 intellij를 종료하였던지 여하튼 npm start하니 다음과 같이 동일포트를 사용 중이라 나온다.

? Something is already running on port 3000.

Would you like to run the app on another port instead? » (Y/n)

node가 죽지 않은 모양이다. 또는 다른 프로세스가 있을 수도.

PS C:\Dev64\workspace\blog> ps -name node        

Handles  NPM(K)    PM(K)      WS(K)     CPU(s)     Id  SI ProcessName
-------  ------    -----      -----     ------     --  -- -----------
    147      60    99916     109824       3.77   4768   1 node

PS C:\Dev64\workspace\blog> netstat -ano | findStr 3000  
  TCP    0.0.0.0:3000           0.0.0.0:0              LISTENING       4768

PS C:\Dev64\workspace\blog> taskkill /F /PID 4768
성공: 프로세스(PID 4768)가 종료되었습니다.

TCPView로 봐도 된다.

 

 



반응형

'front-end & ui > npm' 카테고리의 다른 글

npm webpack 기본 정리  (0) 2023.03.16
npm list extraneous  (0) 2022.01.07
npm package update  (0) 2021.12.24
nodemon security exception  (0) 2021.12.15
npm upgrade & package version check, npm init package.json generation  (0) 2021.12.13
Comments