1.安装homebrew
Homebrew, Mac系统的包管理器,用于安装NodeJS和一些其他必需的工具软件。
$: /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
安装需要的工具,
2.修改环境变量,从国内的镜像源下载,加载下载进度
1.1打开.bash_profile
$:vi ~/.bash_profile
1.2添加环境变量,加入下面的语句
export HOMEBREW_BOTTLE_DOMAIN=http://7xkcej.dl1.z0.glb.clouddn.com
1.3使.bash_profile文件生效
$:source ~/.bash_profile
3.安装node
$:brew install node
4.设置npm镜像
npm config set registry https://registry.npm.taobao.org --global
npm config set disturl https://npm.taobao.org/dist --global
5.安装react-native-cli,
是Yarn、React Native的命令行工具
npm install -g yarn react-native-cli
6切换镜像源
yarn config set registry https://registry.npm.taobao.org --global
yarn config set disturl https://npm.taobao.org/dist --global
7.安装Watchman
由Facebook提供的监视文件系统变更的工具。安装此工具可以提高开发时的性能(packager可以快速捕捉文件的变化从而实现实时刷新)。
brew install watchman
安装到此结束