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
Zameer Ansari
  • 28,977
  • 24
  • 140
  • 219

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
Zameer Ansari
  • 28,977
  • 24
  • 140
  • 219