How to Get List of Globally Installed Packages of NPM
Updated on Jun 06, 2023 | 8 min read | 11.0k views
Share:
For working professionals
For fresh graduates
More
Updated on Jun 06, 2023 | 8 min read | 11.0k views
Share:
Table of Contents
Node.js is one of the most commonly-used runtime environments for JavaScript. One of the main reasons that can be attributed to this huge popularity is its advanced features, which include a non-blocking I/O model and event-driven model, among others.
Node.js comes alongside NPM, which is considered to be one of the largest software registries worldwide. What’s more? It is open-source, meaning any developer can use NPM to share and install packages.
The following article will guide you through getting access to global NPM list packages, which can further enhance your development efficiency to manifolds.
So, let’s get started!
Also, Check out our IT free courses to get an edge over the competition.
While listing globally installed packages, with the help of the NPM command-line interface, the following command is used.
npm list -g –depth 0
Here ‘–depth 0‘ signifies that only the top-level packages should be listed without their dependencies. If you wish to view the dependencies, you can always edit or omit this option.
Following this command will enable you to see all the packages, alongside their version numbers, installed in your system globally.
Furthermore, it also allows you to search for a specific package by filtering the list. You just have to add the package name that you wish to view at the end of the command. Mentioned below is a small example to help you understand the same.
npm list -g <package-name>
In this manner, you can view details of that specific package only.
The ‘npm ls‘ is another method that you can use to list globally installed packages in your system. The command for the same goes as follows,
npm ls -g –depth 0
It will generate a tree-like structure containing all the details of the global packages installed in your system, including their version numbers and dependencies. However, please note that this is only limited to the top-level packages. If you wish to view all the dependencies, you can simply alter “–depth=0” to a higher number.
Check Out upGrad’s Software Development Courses to upskill yourself.
The ‘npm view‘ command is commonly used to display detailed information about any specific package. This includes its version or dependencies and highlights details related to the author, license, and more.
It does so by running the following command,
npm view <package-name>
After entering this command, you will automatically get access to the latest version of the specific package alongside its metadata. If you are looking for one specific version of the package, you simply have to enter the version number after the package name.
Let’s say you want to display the dependencies of the ronn package at version 0.2.4. The command for the same goes as follows,
npm view ronn@0.2.4 dependencies.
Similarly, the ‘npm view’ command also allows you to display specific metadata fields for any specific package. You simply have to enter the field name at the end of the name.
npm view <package-name> <field-name>
The ‘npm outdated’ command can spot any outdated packages in your system. It compares the currently installed packages with the latest version available in the npm registry. In this manner, it carefully presents any latest or newer version that might be available for the installed packages in your system.
In order to use ‘npm outdated,’ you simply have to run the following command,
npm outdated
After entering the command, you can view a detailed list containing the latest updates, current versions, and the type of upgrade required.
Additionally, if you wish to check for any specific package, you can achieve the same by simply using this,
npm outdated <package-name>
There are two other methods in npm outdated command. They are, namely,
The ‘–depth’ option lets you narrow down how deep the dependency tree should be checked for outdated packages.
Take this one, for example,
npm outdated –depth=2
Here, ‘–depth=2’ signifies that it will check two levels deep in the dependency tree for outdated packages.
Contrary to this, the ‘–json’ is used to generate results in JSON format. This is helpful when you want to further process the results with other tools or scripts.
Please note that ‘npm outdated‘ is an in-built command; that is, you do not have to install any additional packages for the same.
Just like you can install npm list global packages, you can also uninstall the same with the help of the ‘npm uninstall’ command. It permanently removes the specified package from the global_nodes directory.
The syntax for the same goes as follows,
npm uninstall -g <package-name>
This is not just limited to one single global package. You can uninstall multiple npm list global packages using this syntax. You simply have to add the package names in the command, separated by spaces.
Furthermore, in cases where you wish to uninstall a specific package version from your system, you can do the same by simply specifying the version number in the Command.
npm uninstall – g <package-name>@<version>
One key point to consider is that when uninstalling npm list global packages, all the dependencies not shared with other installed packages will also be removed. However, if a dependency is shared with another installed package, it will not get removed from the system.
If you’re hoping to gain further proficiency in development, upGrad’s Full Stack Software Development Bootcamp can bring an end to your search with benefits like an immersive learning platform and 16+ hours of group career coaching, among others.
Managing different npm list packages can seem daunting, especially when dealing with multiple projects that might require different versions of the same package. Therefore knowing when and how to add a package to your project is crucial.
On that note, here is a detailed guide to effectively managing your npm list packages.
Let’s take a look at a few of the most commonly faced issues when dealing with npm list packages.
To conclude, there is no single solution to package management. It all comes down to personal experiences and preferences. Nonetheless, by now, hopefully, you have a clear understanding of the NPM commands list and how to use them for various processes. To gain more in-depth knowledge of these various functionalities, you can refer to online courses offered under leading education platforms like upGrad.
One such includes IIITB’s Post-Graduate program in software development. It is specifically designed for candidates who wish to kick-start their careers in software development. It offers numerous advantages to its students, from personalised industry sessions to 1:1 high-performance coaching.
Get Free Consultation
By submitting, I accept the T&C and
Privacy Policy
India’s #1 Tech University
Executive PG Certification in AI-Powered Full Stack Development
77%
seats filled
Top Resources