本说明旨在帮助读者快速搭建开发RN应用,考虑到部门大部分是Mac,故奉上Mac-IOS开发环境,Window请戳这里 (opens new window)
Node/yarn
XCode
Watchman
react-native-cli
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install node yarn
没有翻墙请使用淘宝镜像以加速下载
npm config set registry https://registry.npm.taobao.org --global
npm config set disturl https://npm.taobao.org/dist --global
提供IDE和Simulator模拟器,AppStore或官网 (opens new window)下载,React Native目前需要Xcode 8.0 或更高版本。
监视文件变更工具,热加载需要用到该工具
brew install watchman
react native的cli工具,通常都使用该工具创建项目模板
npm install -g react-native-cli
一般0.44.3版本比较稳定,最新版本如果没有翻墙,很可能有些库无法下载,导致编译错误。所以如果在家没翻墙,建议创建项目使用0.44.3版本,
react-native init HelloRN --0.44.3
cd AwesomeProject
react-native run-ios
cd HelloRN
react-native run-ios