[h’程序员’]NodeJs
前端必装,“Node.js 是跨平台、开源的JavaScript 运行环境”
https://nodejs.org/en/download
npm同类包管理工具安装大全(安装各包管理工具)
npm镜像加速:npm config set registry https://registry.npmmirror.com
(恢复原来的npm config set registry https://registry.npmjs.org/
)
cnpm : npm install -g cnpm --registry=https://registry.npmmirror.com
了解更多
yarn:npm install -g yarn
了解更多
pnpm:npm install -g pnpm
与nodeJs版本兼容 了解更多
版本对应:
Vue2:6.11.5 < node版本 < 18
Vue3: nodeJs >= 14
NVM-node与npm版本快速切换:
下载安装nvm(选择setup.exe下载)-> 配置下载(防止下载卡住)
nvm命令(XX 是node的版本数字,如16):nvm install XX
-> nvm use XX