Home  >  Article  >  Backend Development  >  javascript - 如何清除已设置的npm淘宝镜像?

javascript - 如何清除已设置的npm淘宝镜像?

WBOY
WBOYOriginal
2016-06-06 20:15:311623browse

开发React Native时,通过下面命令将npm设置成淘宝镜像
npm config set registry https://registry.npm.taobao.org
npm config set disturl https://npm.taobao.org/dist

现在需要将淘宝镜像去掉,还原成官方镜像,请问如何处理?

回复内容:

开发React Native时,通过下面命令将npm设置成淘宝镜像
npm config set registry https://registry.npm.taobao.org
npm config set disturl https://npm.taobao.org/dist

现在需要将淘宝镜像去掉,还原成官方镜像,请问如何处理?

npm config delete registry
npm config delete disturl

或者 
npm config edit 
找到淘宝那两行,删除

手动的太麻烦了,一般用 https://www.npmjs.com/package/nrm 做切换

$ nrm ls
 
* npm ---- https://registry.npmjs.org/
  cnpm --- http://r.cnpmjs.org/
  taobao - http://registry.npm.taobao.org/
  eu ----- http://registry.npmjs.eu/
  au ----- http://registry.npmjs.org.au/
  sl ----- http://npm.strongloop.com/
  nj ----- https://registry.nodejitsu.com/
  pt ----- http://registry.npmjs.pt/
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn