Update cheatsheets

This commit is contained in:
ivuorinen
2024-10-17 00:17:21 +00:00
parent f32d2d1ccd
commit 7d8d3edd4e
24 changed files with 307 additions and 37 deletions

21
tldr/npm-uninstall Normal file
View File

@@ -0,0 +1,21 @@
---
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/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 ...}}`