mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 10:42:07 +02:00
377 B
377 B
npm uninstall
패키지 제거. 더 많은 정보: https://docs.npmjs.com/cli/v8/commands/npm-uninstall.
- 현재 프로젝트에서 패키지 제거:
npm uninstall {{패키지_이름}}
- 전역에서 패키지 제거:
npm uninstall -g {{패키지_이름}}
- 여러 패키지를 한 번에 제거:
npm uninstall {{패키지_이름1 패키지_이름2 ...}}