1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/npm-uninstall.md

17 lines
377 B
Markdown
Raw Normal View History

# npm uninstall
> 패키지 제거.
> 더 많은 정보: <https://docs.npmjs.com/cli/v8/commands/npm-uninstall>.
- 현재 프로젝트에서 패키지 제거:
`npm uninstall {{패키지_이름}}`
- 전역에서 패키지 제거:
`npm uninstall -g {{패키지_이름}}`
- 여러 패키지를 한 번에 제거:
`npm uninstall {{패키지_이름1 패키지_이름2 ...}}`