TIL how to get a list of all globally installed npm commands
POSTED ON:
New Project.
You type in vue create my-project
.
Magic.
But then you think to yourself. How the heck is vue
a command line?
Well, you probably installed it globally. I was curious on what other global commands I installed.
The magic command is: npm list -g --depth 0
REF:
npm tricks part 1: Get list of globally installed packages
Related TILs
Tagged: npm