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

Answer by Jackkobec for How can I uninstall npm modules in Node.js?

$
0
0

The simplest solution is:

npm uninstall packageName --save-dev

See upper level packages names in the your project:

npm list --depth=0

The output will be like:

app@0.1.0 /home/jackkobec/projects/myAppName├── packageName@packageVersion├── express@4.16.4

Copy package name and execute npm uninstall command. Example for express package:

npm uninstall express --save-dev

Viewing all articles
Browse latest Browse all 54

Trending Articles



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