Answers for "how to delete package from npmjs"

38

how to uninstall npm packages

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

npm package remove from npm website

npm unpublish <package-name>@<version>
Posted by: Guest on October-13-2020
0

npm package remove from npm website

npm unpublish <package-name> -f
Posted by: Guest on October-13-2020
8

how to uninstall npm package

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

Browse Popular Code Answers by Language