I've installed cordova via npm and i did it globally, now i would like to remove it to reinstall it on single app folder
Any clue on how to do it safely?
Try sudo npm uninstall cordova -g to uninstall it globally and then just npm install cordova without the -g flag after cding to the local app directory
sudo npm uninstall cordova -g
npm install cordova
cd
2.1m questions
2.1m answers
60 comments
57.0k users