Answers for "what is npm link"

0

npm global link check

npm ls -g --depth=0 --link=true
Posted by: Guest on May-28-2020
0

npm link

cd ~/projects/node-redis    # go into the package directory
npm link                    # creates global link
cd ~/projects/node-bloggy   # go into some other package directory.
npm link redis              # link-install the package
Posted by: Guest on September-03-2021

Browse Popular Code Answers by Language