全局安装n模块:sudo npm install n -g
更新npm到最新版本:sudo npm install npm@latest -g
安装当前稳定版本:sudo n stable
安装最新版本:sudo n latest
卸载指定node版本:sudo n rm 版本号
查看node所有版本:npm view node versions
切换node版本(不会删除已安装的其他版本):sudo n 版本号
node版本降级/升级(安装指定版本): sudo n 版本号(例: sudo n 16.20.0)
查看版本号:node -v
清除node.js的cache: sudo npm cache clean -f
查看版本号:node -v
来源地址:https://blog.csdn.net/weixin_45792955/article/details/130260227