0%

React Native笔记1-准备工作

装环境

安装Homebrew,mac的套件管理器

1
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

安装Node.js

1
brew install node

安装react-native-cli。 React Native的命令行工具

1
npm install -g react-native-cli

安装Watchman。Facebook提供的监视文件系统变更工具

1
brew install watchman

创建React Native项目

定位的指定文件夹,创建React Native项目

1
react-native init firstReactNative

终端内运行项目

1
2
3
4
//进入到项目文件夹中
cd firstReactNative
//运行项目
react-native run-ios

也可以在Xcode中点击firstReactNative/ios/firstRectNative.xcodeproj运行

编写代码并运行

用编译器打开index.ios.js文件,修改相应代码

在iOS模拟器上command + R刷新运行app

打赏作者一杯咖啡