uninstall global module npm code example
Example 1: how to uninstall global package npm
npm uninstall -g <package-name>
# example
npm uninstall -g webpack
Example 2: how to uninstall npm package
npm uninstall -g <module_name> //to uninstall globally
Example 3: how to totally uninstall prettier
//This is how you remove package from your dependencies in project.json
npm uninstall --save <package_name>
Example 4: how to globally uninstall npm package
npm uninstall -g <@scope/package_name>