npm无法使用search的问题

2017.8.13星期日

  • 使用npm进行search的时候报错【no available search source之类的】,但install正常, 原因是.npmrc文件中把
    registry 设置成了淘宝的镜像
    如 :registry:https://registry.npm.taobao.org/
    将其改为官方的源: https://registry.npmjs.org/即可解决问题
    具体操作:
vi  ~/.npmrc
registry=https://registry.npmjs.org/
  • 针对使用淘宝的镜像源install速度更快的优点,
    可以使用cnpm代替npm进行install, 而使用npm进行search
    安装:
    npm install -g cnpm —registry=https://registry.npm.taobao.org/
  • cnpm 的操作大抵跟npm相同

你可能感兴趣的:(npm无法使用search的问题)