0

After installing Cordova using sudo npm install -g cordova is there a way to verify whether it is downloaded, e.g. by checking the version number?

I have tried the following commands

  • cordova -v
  • cordova platform version android
  • dpkg -l cordova
  • dpkg -s cordova | grep 'Version'
  • apt-show-versions cordova
  • apt-cache policy cordova
xameeramir
  • 25,752
  • 22
  • 132
  • 205

1 Answers1

0

Since, the package is node package managed by npm, the syntax to check a node package version will be used:

npm -v cordova

checking node package cordova version

Community
  • 1
  • 1
xameeramir
  • 25,752
  • 22
  • 132
  • 205