www.LinuxHowtos.org
REMOVAL
Section: (7)Updated: October 2025
Index Return to Main Contents
NAME
removal- Cleaning the SlateSynopsis
So sad to see you go.-
sudo npm uninstall npm-g
More Severe Uninstalling
Usually, the above instructions are sufficient. That will remove npm, but leave behind anything you've installed. If that doesn't work, or if you require more drastic measures, continue reading. Note that this is only necessary for globall-installed packages. Local installs are completely contained within a project's node_modules folder. Delete that folder, and everything is gone unless a package's install script is particularly il-behaved. This assumes that you installed node and npm in the default place. If you configured node with a different -prefix, or installed npm with a different prefix setting, then adjust the paths accordingly, replacing /usr/local with your install prefix. To remove everything np-related manually:-
rm-rf /usr/local/{lib/node{,/.npm,_modules},bin,share/man}/npm*
-
ls-laF /usr/local/{lib/node{,/.npm},bin,share/man} | grep npm
-
find /usr/local/{lib/node,bin}-exec grep-l npm [rs]{[rs]} [rs]; ;
See also
-
- *
- npm help uninstall
- *
- npm help prune