npm 镜像配置
Posted web-php
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了npm 镜像配置相关的知识,希望对你有一定的参考价值。
永久使用:
npm config set registry URL (URL 即为需要设置的镜像站点地址)
npm config set registry https://registry.npm.taobao.org --global
npm config set disturl https://npm.taobao.org/dist --global
npm config get registry 返回 https://registry.npm.taobao.org 即设置成功
npm config get disturl 返回 https://npm.taobao.org/dist 即设置成功
临时使用:
npm install xxx --registry=https://registry.npm.taobao.org
使用 cnpm:
npm install cnpm -g
React Native 官网 搭建开发环境 不建议使用 cnpm
以上是关于npm 镜像配置的主要内容,如果未能解决你的问题,请参考以下文章