Files
cheatsheet-tldr/tldr/npm-uninstall
2025-12-20 00:20:53 +00:00

22 lines
471 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# npm uninstall
> Remove a package.
> More information: <https://docs.npmjs.com/cli/npm-uninstall/>.
- Remove a package from the current project:
`npm {{[r|uninstall]}} {{package_name}}`
- Remove a package globally:
`npm {{[r|uninstall]}} {{package_name}} {{[-g|--global]}}`
- Remove multiple packages at once:
`npm {{[r|uninstall]}} {{package_name1 package_name2 ...}}`