注意:React Native不要使用 cnpm!cnpm 安装的模块路径比较奇怪,packager 不能正常识别!
需要使用nrm工具切换淘宝源
1、cnpm 方式(React Native不推荐使用):
npm install -g cnpm --registry=https://registry.npm.taobao.org
2、单次安装使用:
npm install XXX -S --registry=https://registry.npm.taobao.org
3、永久切换,手动切换成淘宝源或者其他源头如yran等:
npm config set registry https://registry.npm.taobao.org
如果想切回原来npm源地址
npm config set registry https://registry.npmjs.org
检测是否安装成功:
npm config get registry
4、使用nrm切换源
- 安装nrm
npm install -g nrm
如果报错参考博客: