how to uninstall npm linux code example
Example 1: uninstall node js and npm ubuntu
sudo apt-get purge --auto-remove nodejs
Example 2: how to uninstall npm package
npm uninstall -g <module_name> //to uninstall globally
Example 3: uninstalling npm modules from node.js
Simply use below command in cmd and change module_name with different modules
>npm uninstall <module_name>