安装Node.js(下载地址:https://nodejs.org/en/download/) ,安装完成后CMD下运行
node --version
查看是否安装正确
npm install -g react-native-cli react-native init AwesomeProject
由于众所周知的网络原因,react-native命令行从npm官方源拖代码时会遇上麻烦。请将npm仓库源替换为国内镜像:
npm config set registry https://registry.npm.taobao.org npm config set disturl https://npm.taobao.org/dist
1
2
3
4
REACT-NATIVE入门(环境搭建及HELLOWORLD)
原文:http://www.cnblogs.com/iluoye/p/5328494.html