React Native npm镜像安装命令
Posted leonmangochen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React Native npm镜像安装命令相关的知识,希望对你有一定的参考价值。
打开控制台,分别执行这两行命令(npm镜像加速后面的过程)
npm config set registry https://registry.npm.taobao.org –global npm config set disturl https://npm.taobao.org/dist –global
之后执行(Yarn是Facebook提供的替代npm的工具,可以加速node模块的下载)
npm install -g yarn react-native-cli
再然后执行(yarn后同理也要设置镜像源)
yarn config set registry https://registry.npm.taobao.org –global yarn config set disturl https://npm.taobao.org/dist –global
新建一个文件夹,按ctrl键并点击鼠标右键在该目录下打开cmd命令窗口,执行react-native init FirstApp,进行创建项目,FirstApp是项目名称。
以上是关于React Native npm镜像安装命令的主要内容,如果未能解决你的问题,请参考以下文章