Open In App

How to Find the Version of Installed NPM Package?

Last Updated : 15 Aug, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report

Knowing the version of NPM installed on your system is important especially when working with specific versions of Node JS or when troubleshooting issues. This article provides instructions to check the version of NPM installed on your system.

Prerequisites:

Steps To Find the Version of the Installed NPM Version

Below we provide a step-by-step process to Find the Installed NPM Version with commands and related outputs for your reference:

Step 1: Open CLI

Here we first open the command line interface.

11
Open CLI

Step 2 : Checking NPM Version

Once CLI is successfully opened, Then execute the below command after execute the command you can able to see the NPM version installed in your machine.

npm -v

or

npm --version
11
output

Conclusion

Finding the version of the installed NPM is a straightforward process that can be done with a single command. This is essential for ensuring compatibility with other tools and packages troubleshooting or preparing for upgrades. The npm -v command provides quick access to this information across different operating systems, making it an indispensable tool for developers working with Node.js.


Next Article

Similar Reads