listing of node modules
Sometimes, it is useful to see the list of packages that you have installed on your system. You can do that with the following commands:
# list all installed modules with dependencies
1 |
npm ls |
# list all installed modules without dependencies
1 |
npm ls --depth=0 |
# list all installed globally dependencies
1 |
npm ls -g --depth=0 |
Leave a Reply