Note > npm cli 명령어 모음npm uninstallBy a3040, Published on Invalid Date
패키지를 제거하기 위한 명령어입니다.
npm uninstall [패키지명] //로컬 프로젝트의 패키지 제거입니다.
npm uninstall [패키지명] -g //글로벌 패키지 제거입니다.
PS C:\Users\HANSUNG\Documents\work\tistory\tistory_openapi\ex4> npm list -g
C:\Users\HANSUNG\AppData\Roaming\npm
├── @babel/cli@7.21.0
├── @babel/core@7.21.4
├── @vue/cli@5.0.8
├── axios@1.4.0
├── create-react-app-ssr@3.0.0
> npm uninstall axios -g
PS C:\Users\HANSUNG\Documents\work\tistory\tistory_openapi\ex4> npm list -g
C:\Users\HANSUNG\AppData\Roaming\npm
├── @babel/cli@7.21.0
├── @babel/core@7.21.4
├── @vue/cli@5.0.8
├── create-react-app-ssr@3.0.0