Answers for "how to undo npm install"

38

how to uninstall npm packages

npm uninstall --save <package_name>
npm un <package_name>
Posted by: Guest on August-13-2020
0

revert npm version

npm install -g [email protected]
Posted by: Guest on February-24-2020
24

npm uninstall

npm uninstall <module_name>
Posted by: Guest on May-19-2020
8

how to uninstall npm package

npm uninstall -g <module_name>  //to uninstall globally
Posted by: Guest on June-18-2020
1

how to unistall dependencies

npm un <package_name>
Posted by: Guest on June-05-2020

Browse Popular Code Answers by Language