How to uninstall node packages in npm
In this tutorial, we are going to learn how to uninstall node packages/modules in a project using npm.
Uninstalling a single package
To uninstall a single package, we need to use the npm uninstall
command followed by the package-name.
Example:
npm uninstall body-parser
Similarly, we can uninstall the global package by adding a -g
flag.
npm -g uninstall nodemon
Uninstalling Multiple packages
To uninstall the multiple packages, we need to use the npm uninstall
command followed by multiple package names separated by the spaces package1
package2
.
Example:
npm uninstall express cors