Node.js 安装配置
https://www.runoob.com/nodejs/nodejs-install-setup.html
Windows安装:直接给出的下载链接版本较低,可从历史版本中下载指定版本
配置淘宝镜像
查看node版本
node -v
查看npm版本
npm -v
配置node到指定版本
linux:https://www.cnblogs.com/anyun/p/8328397.html
windows:下载安装包直接覆盖,若为降版本,需要先卸载高版本,再安装低版本;
配置npm到指定版本
1)npm install npm -g
2)更新到最新版本:npm install npm@latest -g
3)更新到最新官方测试版本:npm install npm@next -g
https://www.cnblogs.com/coober/p/6429393.html
http://www.runoob.com/nodejs/nodejs-npm.html
https://blog.youkuaiyun.com/zeping891103/article/details/84400954