curl -sL https://deb.nodesource.com/setup_11.x | sudo -E bash -
apt-get install -y nodejs
上面是Ubuntu16.x系统的安装命令
验证版本号
nodejs -v
下面是centos7系统的安装命令
curl -sL https://rpm.nodesource.com/setup_11.x | bash -
yum install -y nodejs
验证版本号
node -v