RN环境配置
必需的软件
Homebrew
Mac系统的包管理器
1 | ruby -e -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" |
Node
1 | brew install node |
react-native-cli
1 | npm install -g react-native-cli |
非必需软件
Watchman
监视文件系统变更的工具
1 | brew install watchman |
Flow
静态的JS类型检查工具
1 | brew install flow |
测试
1 | react-native init FirstProject |

