1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00

npm-uninstall: add page (#14201)

This commit is contained in:
ashborn 2024-10-16 16:28:15 +05:30 committed by GitHub
parent f154c87d29
commit 18e00ffa4f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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