Heim >Backend-Entwicklung >PHP-Tutorial >javascript - 如何清除已设置的npm淘宝镜像?

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

WBOY
WBOYOriginal
2016-06-06 20:15:311736Durchsuche

开发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

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

<code>npm config delete registry
npm config delete disturl

或者 
npm config edit 
找到淘宝那两行,删除</code>

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

<code>$ 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/</code>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn