mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-05 16:44:26 +00:00
22 lines
455 B
Plaintext
22 lines
455 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/commands/npm-uninstall>.
|
|
|
|
- Remove a package from the current project:
|
|
|
|
`npm uninstall {{package_name}}`
|
|
|
|
- Remove a package globally:
|
|
|
|
`npm uninstall {{[-g|--global]}} {{package_name}}`
|
|
|
|
- Remove multiple packages at once:
|
|
|
|
`npm uninstall {{package_name1 package_name2 ...}}`
|