您的当前位置:首页正文

初始化ReactNative-项目2018-09-25

来源:华佗小知识
  react-native init projectName

如果没有指定版本号,则默认为最新版本。
指定版本号方式

 react-native init projectName --version 0.44.3

依赖

  npm config set registry https://registry.npm.taobao.org --global
  npm config set disturl https://npm.taobao.org/dist --global

Yarn、React Native 的命令行工具(react-native-cli)

npm install -g yarn react-native-cli

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

yarn config set registry https://registry.npm.taobao.org --global
yarn config set disturl https://npm.taobao.org/dist --global

安装完 yarn 之后就可以用 yarn 代替 npm 了,例如用yarn代替npm install命令,用yarn add 某第三方库名代替npm install 某第三方库名。

yarn和npm区别(别人整理的):