- 安装github
yum install git -y # (Centos)
apt install git # (Ubuntu)
1
2
2
- 安装node.js管理器等组件
git clone https://github.com/creationix/nvm.git ~/nvm
# 设置nvm 自动运行
echo "source ~/nvm/nvm.sh" >> ~/.bashrc
source ~/.bashrc
# 查看所有版本(部分环境可能不支持最高版本)
nvm list-remote
# 安装npm的最新版本
nvm install stable
# 使用最新版本
nvm use stable
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
# 使用国内镜像
- 对于国内而言,访问外网是很困难的,这会导致访问速度很慢,而国内镜像就很重要了
# node 国内镜像
export NVM_NODEJS_ORG_MIRROR=https://npmmirror.com/mirrors/node
1
# npm 国内镜像
npm config set registry https://registry.npmmirror.com
1
# npm WIN 国内镜像源
npm config set registry https://registry.npmmirror.com --global
npm config set disturl https://npmmirror.com/mirrors/node --global
1
2
2