Quantcast
Viewing all articles
Browse latest Browse all 54

Answer by Manish Khemani for How to uninstall npm modules in node js?

Use npm uninstall <packageName> --save to uninstall a package and remove it's entry in package.json.

npm uninstall -g <packageName> --save will uninstall the package if it was added globally.


Viewing all articles
Browse latest Browse all 54

Trending Articles