npm/yarn 在国内下载包失败解决方法

注意:不要使用cnpm!神奇错误不断

cnpm 卸载

  1. 卸载cnpm

    npm uninstall -g cnpm --registry=https://registry.npm.taobao.org
    
  2. 清理缓存

     npm cache clean --force
    

npm/yarn注册

  1. npm注册镜像

    npm config set registry https://registry.npm.taobao.org --global
    npm config set disturl https://npm.taobao.org/dist --global
    
  2. 检验是否注册成功

    npm config get registry
    npm config get disturl
    
  3. 安装yarn

    npm intall -g yarn
    
  4. yarn 注册镜像

    yarn config set registry https://registry.npm.taobao.org --global
    yarn config set disturl https://npm.taobao.org/dist --global
    
  5. 检验是否注册成功

    yarn config get registry
    yarn config get disturl
    

你可能感兴趣的:(npm/yarn 在国内下载包失败解决方法)