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
2024-10-16 12:58:15 +02:00

350 B

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 ...}}