how to remove npm packages code example

Example 1: how to uninstall npm packages

npm uninstall --save <package_name>
npm un <package_name>

Example 2: uninstall node package

npm uninstall <package_name>

Example 3: uninstall nodemon globally

npm uninstall nodemon

Example 4: how to globally uninstall npm package

npm uninstall -g <package_name>

Example 5: how to uninstall npm package

npm uninstall -g <module_name>  //to uninstall globally

Example 6: remove all packages npm

npm ls -gp --depth=0 | awk -F/ '/node_modules/ && !/\/npm$/ {print $NF}' | xargs npm -g rm

Tags:

Php Example