关于reactnative安装和开启项目

必须安装的依赖有:Node、Watchman、Xcode 和 CocoaPods。
1、安装node            ~ % brew install node
2、 安装watchman  ~ % brew install watchman
3??、建议切换淘宝源安装
~ % npx nrm use taobao # 使用nrm工具切换淘宝源 ps:  npx nrm use npm# 如果之后需要切换回官方源可使用
3!、安装yarn   yarn可以加速下载第三方库
npm install -g yarn  //通过yarn add 代替npm install
4、sudo gem install cocoapods
5、npx react-native init reactnativeProject//创建项目
6、运行项目,  cd 【项目路径】,yarn ios
7、了解入口文件 app.js

你可能感兴趣的:(关于reactnative安装和开启项目)