I am looking for a command that will list the names of global modules that I have npm link\'d to local copies, also listing the local path.
npm link
In fact, a list
To list all globally linked modules, this works (documentation https://docs.npmjs.com/cli/ls):
npm ls -g --depth=0 --link=true
I had to update the version of npm on my machine first, though:
npm install npm@latest -g