国内brew 按照提示安装即可
shell/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
安装完成后 测试
shellbrew -v
卸载brew
shell/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/HomebrewUninstall.sh)"
安装
shellbrew install nvm
配置
shell# 注意:如果不存在文件 就先touch一个
open -e ~/.bash_profile
# 配置内容
export NVM_DIR=~/.nvm
source $(brew --prefix nvm)/nvm.sh
# 注意:如果不存在文件 就先touch一个
open -e ~/.zshrc
# 配置内容
export NVM_DIR=~/.nvm
source $(brew --prefix nvm)/nvm.sh
# 分别执行
source ~/.bash_profile
source ~/.zshrc
配置国内镜像源
shellvim ~/.zshrc
# 在最后添加
export NVM_NODEJS_ORG_MIRROR=https://npmmirror.com/mirrors/node/
# 添加后
source ~/.zshrc
shell# 安装最新版 node
nvm install stable
常见命令
shell// 查看当前使用的node版本 nvm current // 查看所有已经在本地安装的node版本 nvm ls // 查看所有可下载的版本 nvm list available // 安装最新版 node nvm install stable // 使用最新版本的node nvm use node // 安装指定版本的node nvm install node版本号(如:nvm install 14.16.0) // 使用指定版本的node nvm use node版本号 // 卸载指定版本的node nvm uninstall node版本号 // 设置node别名 nvm alias node别名 node版本号 // 取消别名 nvm unalias node别名 // 设置默认使用的node版本 nvm alias default node版本号
shell#查看当前的镜像源
npm get registry
#设置淘宝镜像地址
npm config set registry https://registry.npm.taobao.org
#设置阿里镜像地址
npm config set registry http://registry.npmmirror.org
#切换回官方镜像源
npm config set registry http://www.npmjs.org
#安装镜像源管理工具
npm install -g nrm
#查看当前可用镜像源
nrm ls
#切换到指定镜像源
nrm use cnpm
本文作者:Freed
本文链接:
版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!