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

17 lines
350 B
Markdown
Raw Normal View History

2024-10-16 16:28:15 +05:30
# npm uninstall
> Remove a package.
> More information: <https://docs.npmjs.com/cli/v8/commands/npm-uninstall>.
- Remove a package from the current project:
`npm uninstall {{package_name}}`
- Remove a package globally:
`npm uninstall -g {{package_name}}`
- Remove multiple packages at once:
`npm uninstall {{package_name1 package_name2 ...}}`