remove a npm package 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 packages

npm uninstall --save <package_name>
npm un <package_name>

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 eslint

npm uninstall <module_name>

Example 5: how to uninstall npm package

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