react-naitive init 卡死

react

前言

搭建reactNative环境后,执行react-native init命令卡住,一天了也没什么效果,一开始我以为是没翻墙的原因,翻墙后还是不行,那么到底怎么解决呢,其实可以使用淘宝镜像来解决。

方法

         1、 npm

config set

registry https://registry.npm.taobao.org

npm info underscore (如果上面配置正确这个命令会有字符串response)

         2、 npm--registry

https://registry.npm.taobao.org info underscore

         3、 registry=

https://registry.npm.taobao.org

      其实这三个方法都是为npmrc这个文件添加registry = https://registry.npm.taobao.org这个条目的,我采用了最后一种方法很快就初始化完毕了。

      到node安装目录下面找到npmrc在文件末尾加上这句话就可以了。

      F:\node\node_modules\npm



以上是 react-naitive init 卡死 的全部内容, 来源链接: utcz.com/z/381649.html

回到顶部