how to remove a global npm package code example
Example 1: how to uninstall global package npm
npm uninstall -g <package-name>
# example
npm uninstall -g webpack
Example 2: npm uninstall eslint
npm uninstall <module_name>
Example 3: how to globally uninstall npm package
npm uninstall -g <package_name>
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>
Example 5: remove all packages npm
npm ls -gp --depth=0 | awk -F/ '/node_modules/ && !/\/npm$/ {print $NF}' | xargs npm -g rm
Example 6: how to unistall dependencies
npm un <package_name>