#查看当前node版本
node -v

#将npm源更换成淘宝的镜像

sudo npm config set registry https://registry.npm.taobao.org

# 安装n工具
sudo npm install n -g

# 安装最新稳定版本nodejs
sudo n stable

# 确认是否最新版本

node -v

注意:有些版本的更新,会更换node执行文件的位置,需要及时替换旧的node执行文件为最新的文件,或软链。

Note: the node command changed location and the old location may be remembered in your current shell.
         old : /usr/bin/node
         new : /usr/local/bin/node

像上面如果有需要更换的话:

mv /usr/bin/node /usr/bin/node.bak
ln -s /usr/local/bin/node /usr/bin/node