1

I installed appium-chromedriver via mpm using below command , may I know how to get the installed version of it ?

npm install -g appium-chromedriver

appium-chromedriver Link

forkdbloke
  • 1,505
  • 2
  • 12
  • 29
Sameera De Silva
  • 1,722
  • 1
  • 22
  • 41
  • `/usr/local/lib/node_modules` in macos [ref stackoverflow answer](https://stackoverflow.com/a/35638528/5875610) And `C:\Users\user_name\AppData\Roaming\npm` in Windows. Check the package.json in both directories for npm version. Also this could easily be found out with Google. – Kevin Hernandez Dec 20 '19 at 15:27
  • 1
    Also `npm show [package-name] version` – Kevin Hernandez Dec 20 '19 at 15:29
  • Thank s a lot, The second comment was helpful using that I was able to get the path npm show appium-chromedriver version – Sameera De Silva Dec 21 '19 at 01:28

1 Answers1

3

As per the guidance of Kevin's comment npm show node-package-name version , I was able to derive the version.

 npm show appium-chromedriver version

enter image description here

Sameera De Silva
  • 1,722
  • 1
  • 22
  • 41