npm uninstall vs remove code example

Example 1: how to uninstall global package npm

npm uninstall -g <package-name>
# example 
npm uninstall -g webpack

Example 2: uninstall dependencies npm

npm uninstall <package_name>
//Example
npm uninstall mongoose
//A tip ctrl+c helps to terminate a job in terminal

Example 3: how to uninstall npm package

npm uninstall -g <module_name>  //to uninstall globally

Example 4: uninstalling npm modules from node.js

Simply use below command in cmd and change module_name with different modules

>npm uninstall <module_name>