IT/javascript

npm clean, yarn clean 하는 방법

generator 2025. 4. 9. 09:41

npm은 clean이라는 명령어를 가지고 있지 않다.

대신 아래의 단계를 거쳐 똑같은 효과를 볼수 있다.

1. npm clean

rm -rf node_modules package-lock.json
npm cache clean --force
npm install

2. yarn clean

rm -rf node_modules yarn.lock package-lock.json
yarn cache clean
yarn install