react-native-cli 和 react -native 啥关系?
React Native is distributed as two npm packages, react-native-cli
and react-native
.
The first one is a lightweight package that should be installed globally (npm
install -g react-native-cli
), while the second one contains the actual React Native framework code and is installed locally into your project when you run react-native
init
.
Because react-native
init
calls npm
install react-native
, simply linking your local github clone into npm is not enough to test local changes.
那么怎么去使用init安装的react-native 运行 git hup facebook 下的react-native 的example?