Quantcast
Channel: How can I uninstall npm modules in Node.js? - Stack Overflow
Viewing all articles
Browse latest Browse all 54

Answer by Karthik S Kumar for How to uninstall npm modules in node js?

$
0
0

You can uninstall the node modules in the following ways

  1. Uninstall the package

    npm uninstall <Package Name>

  2. Uninstall the package and remove it from dependencies in package.json

    npm uninstall <Package Name> --save

  3. Uninstall the package and remove it from dev dependencies in package.json

    npm uninstall <Package Name> --save-dev

  4. Uninstall a global package. Global packages can be accessed anywhere throughout the system, not limited to a specific project

    npm uninstall -g <Package Name>


Viewing all articles
Browse latest Browse all 54

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>