nvm:nodeJs
版本管理工具,管理nodejs
版本和npm
版本
nodeJs:reactNative
开发过程中所需要的代码库。
npm:是随同nodeJs
一起安装的包管理工具,npm
管理对应nodeJs
的第三方插件
依赖关系
nvm、nodejs、npm的关系:
- nvm管理构建
nodejs
和对应的npm
,npm
管理对应nodejs
的第三方插件 - 一个reactNative项目只包含一个
nodejs
和npm
,npm
和nodejs
是配套关系,一对一的关系。
To install or update nvm, you can use the [install script][2] using cURL:
安装
1 | curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash |
or Wget:
1 | wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash |
The script clones the nvm repository to ~/.nvm
and adds the source line to your profile (~/.bash_profile
, ~/.zshrc
, ~/.profile
, or ~/.bashrc
).
1 | export NVM_DIR="$HOME/.nvm" |
1 | # 安装 node 指定版本 |
更换源
1 | # 临时使用淘宝源 |
Simple App
1 | cnpm i -g webpack |