Answers for "ubuntu npm list packages installed globally"

30

list npm packages installed globally

npm list -g --depth 0
Posted by: Guest on April-17-2020
1

find installed packages in ubuntu

# This returns only the manually installed packages and only the package name (no extra info etc)
comm -23 <(apt-mark showmanual | sort -u) <(gzip -dc /var/log/installer/initial-status.gz | sed -n 's/^Package: //p' | sort -u)
Posted by: Guest on August-15-2021

Code answers related to "ubuntu npm list packages installed globally"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language