Today I Learned

Show all linked modules in use

October 22, 2022

find node_modules node_modules/\@* -depth 1 -type l -print | while read MODULE ; do
    echo "Linked module in use: $MODULE"
done

ref: https://github.com/yarnpkg/yarn/issues/1722#issuecomment-349003538


© 2026 - Written by Vuong Vu. Connect with me on LinkedIn.