RN学习一:RN环境搭建(mac)

RN必须安装的依赖:node、watchman、React Native命令行工具、Xcode

通过Homebrew工具安装

1.安装node

   brew install node

2.安装watchman

    brew install watchman

3.React Native的环境配置

   npm install -g react-native-cli

3.创建工程

    react-native init项目名称—version 0.0.1

4.运行项目

   cd项目目录

   react-native run-ios

你可能感兴趣的:(RN学习一:RN环境搭建(mac))