对React Native初步学习

来源:互联网 发布:win7 vb 对象库未注册 编辑:程序博客网 时间:2024/05/17 02:29
 ReactNative处理有很长一段时间了,之前在项目中也直接用过,最近新项目开始完全用它实现,所以写了一下个人感受。
React Native中文学习地址:https://reactnative.cn/

先安装Homebrew

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


使用Homebrew来安装Node.js

brew install node

npm install -g yarnreact-native-cli


嵌入到现有原生应用

npm init

npm install --save reactreact-native

curl -o .flowconfighttps://raw.githubusercontent.com/facebook/react-native/master/.flowconfig


直接创建一个rn项目

react-native initAwesomeProject




0 0