npm global uninstall code example

Example 1: npm reinstall

npm install -g npm-reinstall# or yarn global add npm-reinstall

Example 2: how to uninstall global package npm

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

Example 3: uninstall dependencies npm

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

Example 4: npm uninstall

npm uninstall <module_name>

Example 5: how to globally uninstall npm package

npm uninstall -g <package_name>

Example 6: delete node module

npm uninstall node_module_name