How to uninstall Cordova and Ionic completely from windows

Asked

Viewed 12,370 times

1

I need to uninstall Cordova and Ionic from my machine completely without leaving any reference or cache so that when reinstalling I ensure that all instances are absolutely new.

I wonder what the npm command for that?

  • Download Iobit Uninstaller, and uninstall completely with it...

2 answers

1

way that works for me:

npm uninstall -g cordova
npm uninstall -g ionic

1


Spin:

npm uninstall cordova ionic

If you want to reinstall later, you need to clear the cache:

npm cache clean -f
npm install npm -g

If the problem persists, it is recommended that you uninstall and install Node:

npm uninstall node
apt-get purge npm
apt-get install npm
npm install node -g

Browser other questions tagged

You are not signed in. Login or sign up in order to post.