오늘도 개발자
Posts
Category
Tags
Archive
About
Npm Global uninstall
27 Apr 2023
node
npm
uninstall
아래 명령어로 설치한 모듈 삭제하기
npm install -g {모듈명}
일단 설치된 모듈 확인
npm list -g
grep {모듈명}
제거하기
npm uninstall -g {모듈명}
Related Posts
Please enable JavaScript to view the
comments powered by Disqus.