Quantcast
Viewing latest article 10
Browse Latest Browse All 54

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

Additionally, if you've started using yarn, in place of npm:
yarn remove <package-name>

Is the equivalent of:
npm uninstall <package-name> --save

This will
- remove the package from package.json, as well as
- uninstall it from your project's node-modules folder


Viewing latest article 10
Browse Latest Browse All 54

Trending Articles