
Get list of all installed packages in node project
You can get the list of installed NPM packages using CLI. It will return a list of all installed packages in your CLI. You have to use the NPM list command in your terminal to get the installed NPM package.
Answers 1
-
Get the list of installed packages using NPM
npm list
1Output:
+-- [email protected]
+-- [email protected]
+-- [email protected]Just visit the root directory of your project and hit the npm list command to get the list of installed packages in your command line interface.