Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find the current available version of a Cordova plugin

Tags:

cordova

I'm using a Cordova plugin - I know that an up-coming version of the plugin has a fix that I need, but at the moment I'm locked into using an older version of the plugin from before the bug was introduced.

Is there a way to find out what the current version of a plugin is without uninstalling it and reinstalling it (and then having to reinstall the older one if it's not been updated yet)?

like image 616
Chris Rae Avatar asked Oct 27 '25 06:10

Chris Rae


1 Answers

You can use cordova-check-plugins to list both the locally installed version(s) and the most recent available remote version(s):

$ cordova-check-plugins

enter image description here

It will also allow you to automatically or interactively update installed plugins.

like image 87
DaveAlden Avatar answered Oct 29 '25 07:10

DaveAlden