注意:不要使用cnpm!神奇错误不断
cnpm 卸载
-
卸载cnpm
npm uninstall -g cnpm --registry=https://registry.npm.taobao.org
-
清理缓存
npm cache clean --force
npm/yarn注册
-
npm注册镜像
npm config set registry https://registry.npm.taobao.org --global npm config set disturl https://npm.taobao.org/dist --global
-
检验是否注册成功
npm config get registry npm config get disturl
-
安装yarn
npm intall -g yarn
-
yarn 注册镜像
yarn config set registry https://registry.npm.taobao.org --global yarn config set disturl https://npm.taobao.org/dist --global
-
检验是否注册成功
yarn config get registry yarn config get disturl