How to Find the Installed Version of an npm Package

Knowing the version of a specific package installed in your application is essential for various reasons. Here are a few methods to help you find out the installed version of an npm package. To see the latest version of all the npm packages installed, along with their dependencies, you can use the following command in your terminal: npm list For example: ❯ npm list /Users/flavio/dev/node/cowsay └─┬ [[email protected]](/cdn-cgi/l/email-protection) ├── [[email protected]](/cdn-cgi/l/email-protection) ├─┬ [[email protected]](/cdn-cgi/l/email-protection) │ ├── [[email protected]](/cdn-cgi/l/email-protection) │ └── [[email protected]](/cdn-cgi/l/email-protection) ├─┬ [[email protected]](/cdn-cgi/l/email-protection) │ ├── [[email protected]](/cdn-cgi/l/email-protection) │ └─┬ [[email protected]](/cdn-cgi/l/email-protection) │ └── [[email protected]](/cdn-cgi/l/email-protection) └── [[email protected]](/cdn-cgi/l/email-protection) Another option is to open the package-lock....