DEV Community

Discussion on: [Pro Tip] `npm link` explained 🎉

Collapse
 
briancodes profile image
Brian • Edited

If you do this often it can become difficult to recall what packages you linked, or whether you've linked a particular library. You can find them all with

npm list -g --depth=0 --link=true
Enter fullscreen mode Exit fullscreen mode