TIL

불필요한 node_modules 한번에 삭제하기

SH_Roh 2023. 1. 31. 04:43
반응형

생활코딩님의 쇼츠보고 감명받아 정리하는 내용!

 

프로젝트를 하면 할수록 쌓이는 node_modules의 지옥..

npkill을 통해 좀 더 편리하게 node_modules를 관리해보자.

https://www.npmjs.com/package/npkill

 

npkill

List any node_modules directories in your system, as well as the space they take up. You can then select which ones you want to erase to free up space.. Latest version: 0.10.0, last published: 3 months ago. Start using npkill in your project by running `np

www.npmjs.com

 

사용방법은 간단하다.

터미널에서 아래 커맨드를 입력해주면 된다.

npx npkill -d [검색하려는 폴더 경로]

 

 

 

이렇게 하면 해당 폴더 안에있는 모든 node_modules 목록들이 뜬다.

방향키로 삭제할 폴더를 고르고 스페이스바를 누르면 삭제가 시작된다. 끝낼 때는 q를 누르면 된다.

 

반응형