[TOC]

文章参考:https://reactnative.cn/docs/getting-started.html

概述

搭建开发环境

安装依赖

1
2
brew install node 
brew install watchman

使用npm安装Yarn、React Native 的命令行工具(react-native-cli)

Yarn是 Facebook 提供的替代 npm 的工具,可以加速 node 模块的下载。React Native 的命令行工具用于执行创建、初始化、更新项目、运行打包服务(packager)等任务。

yarn 是替换 npm 的工具,可以不安装。

1
npm install -g yarn react-native-cli              

安装完 yarn 后同理也要设置镜像源:

1
2
3
// 设置为国内的阿里镜像源
yarn config set registry https://registry.npm.taobao.org --global
yarn config set disturl https://npm.taobao.org/dist --global