Answers for "difference between local and global packages npm install"

0

difference between local and global packages npm install

local packages are installed in the directory where you run npm install <package-name>, and they are put in the node_modules folder under this directory
global packages are all put in a single place in your system (exactly where depends on your setup), regardless of where you run npm install -g <package-name>
Posted by: Guest on January-26-2022

Code answers related to "difference between local and global packages npm install"

Browse Popular Code Answers by Language