windows环境下React Native环境搭建
node配置
npm在国内无法正常使用,有两种办法可以解决,npm换源和使用代理。个人更倾向第二种方法。
方法一,npm换源
使用淘宝镜像
npm config set registry https://registry.npm.taobao.org
使用cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org
使用官方镜像
npm config set registry https://registry.npmjs.org
查看npm源地址
npm config get registry
方法二,设置代理
配置npm的代理
npm config set proxy http://127.0.0.1:1080
npm config set https-proxy http://127.0.0.1:1080
网友评论