2024-10-16 16:28:15 +05:30
|
|
|
# npm uninstall
|
|
|
|
|
|
|
|
> Remove a package.
|
2025-08-02 20:55:21 +03:00
|
|
|
> More information: <https://docs.npmjs.com/cli/npm-uninstall>.
|
2024-10-16 16:28:15 +05:30
|
|
|
|
|
|
|
- Remove a package from the current project:
|
|
|
|
|
2025-08-02 20:55:21 +03:00
|
|
|
`npm {{[r|uninstall]}} {{package_name}}`
|
2024-10-16 16:28:15 +05:30
|
|
|
|
|
|
|
- Remove a package globally:
|
|
|
|
|
2025-08-02 20:55:21 +03:00
|
|
|
`npm {{[r|uninstall]}} {{[-g|--global]}} {{package_name}}`
|
2024-10-16 16:28:15 +05:30
|
|
|
|
|
|
|
- Remove multiple packages at once:
|
|
|
|
|
2025-08-02 20:55:21 +03:00
|
|
|
`npm {{[r|uninstall]}} {{package_name1 package_name2 ...}}`
|