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
find `npm root -g` -maxdepth 2 -type l
to show global links, including namespaced packages.
@andrew's answer works some of the time:
npm ls -g --depth=0 --link=true
but blew up on peer dep errors for me on some occasions. Hope that helps someone!