Npm install is very slow to install plugins, the solution

1: For example: npm install -g vue-cli or vue create The project name is executed very slowly, which may be caused by network reasons or problems with the download source

2: Yes, modify the npm source to Taobao mirror: You can use the following command to switch the npm source to Taobao mirror to improve the download speed

npm install -g cnpm --registry=https://registry.npm.taobao.org

Guess you like

Origin blog.csdn.net/qq_19891197/article/details/131016048