mac下nvm安装和使用

一、nvm,node,npm之间的区别。
  • nvm:nodejs 版本管理工具。也就是说:一个 nvm 可以管理很多 node 版本和 npm 版本。
  • nodejs:在项目开发时的所需要的代码库
  • npm:nodejs 包管理工具。
  • 在安装的 nodejs 的时候,npm 也会跟着一起安装,它是包管理工具。
  • npm 管理 nodejs 中的第三方插件
  • nvm、nodejs、npm的关系:nvm 管理 nodejs 和 npm 的版本。npm 可以管理 nodejs 的第三方插件。
二、nvm 安装
  • 官方下载地址:https://github.com/nvm-sh/nvm
# 下载文件,并执行,bash执行会将项目clone到~/.nvm目录下
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash

# 添加环境配置
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm

# 使用库安装
cd ~/
git clone https://github.com/nvm-sh/nvm.git .nvm
cd ~/.nvm
git checkout v0.39.1

export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"  # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"  # This loads nvm bash_completion


# ~/.bash_profile, ~/.zshrc, ~/.profile, or ~/.bashrc,选择环境使用bash
source ~/.zshrc
  • 使用git下载安装
# 使用库安装
cd ~/
git clone https://github.com/nvm-sh/nvm.git .nvm
cd ~/.nvm
git checkout v0.39.1
./install.sh

export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"  # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"  # This loads nvm bash_completion

# ~/.bash_profile, ~/.zshrc, ~/.profile, or ~/.bashrc,选择环境使用bash
source ~/.zshrc

mac下nvm安装和使用_第1张图片

三、添加国内源
  • ~/.bash_profile, ~/.zshrc, ~/.profile, or ~/.bashrc 添加配置
export NVM_NODEJS_ORG_MIRROR=http://npm.taobao.org/mirrors/node
export NVM_IOJS_ORG_MIRROR=http://npm.taobao.org/mirrors/iojs
  • 修改npm源
echo '
registry = https://registry.npm.taobao.org
' >> ~/.npmrc
四、nvm常用命令
nvm ls    # 列出所有安装的版本
nvm ls-remote    # 列出所有远程服务器的版本(官方node version list)
nvm current    # 显示当前的版本
nvm use <version>    # 使用指定版本
nvm install stable    #安装最新稳定版 node
nvm install <version>    # 安装指定版本
nvm uninstall <version>    # 删除已安装的指定版本,语法与install类似
nvm use <version>    # 切换使用指定的版本node
nvm alias <name> <version>    # 给不同的版本号添加别名
nvm unalias <name>    # 删除已定义的别名
nvm reinstall-packages <version>    # 在当前版本 node 环境下,重新全局安装指定版本号的 npm 包
  • nvm 使用案例
$ nvm
Example:
  nvm install 8.0.0                     Install a specific version number
  nvm use 8.0                           Use the latest available 8.0.x release
  nvm run 6.10.3 app.js                 Run app.js using node 6.10.3
  nvm exec 4.8.3 node app.js            Run `node app.js` with the PATH pointing to node 4.8.3
  nvm alias default 8.1.0               Set default node version on a shell
  nvm alias default node                Always default to the latest available node version on a shell

  nvm install node                      Install the latest available version
  nvm use node                          Use the latest version
  nvm install --lts                     Install the latest LTS version
  nvm use --lts                         Use the latest LTS version

  nvm set-colors cgYmW                  Set text colors to cyan, green, bold yellow, magenta, and white
五、参考
  • https://github.com/nvm-sh/nvm
  • https://www.jianshu.com/p/622ad36ee020
  • https://blog.csdn.net/qq_40028324/article/details/89221324

你可能感兴趣的:(mac,前端,node,macos,npm,vue.js)