react-native安装与链接之间有什么区别?

时间:2019-02-25 11:56:18

标签: react-native

查看有关这两个类似命令的文档:

$ react-native link --help
react-native link [options] [packageName]
  links all native dependencies (updates native build files)

$ react-native install  --help

  react-native install [options] <packageName>
  install and link native dependencies

如果我们指定packageName,我不理解其中的区别。那么,react-native link SOMEPACKAGEreact-native install SOMEPACKAGE有什么区别?

1 个答案:

答案 0 :(得分:1)

前者仅链接本机依赖项,​​后者安装并链接。第二个示例是npm install Fooreact-native link Foo的简写。