Node.js 的装置
CentOS 装置:
$ dnf module list nodejs
$ dnf module install nodejs:14
Windows 装置:
https://nodejs.org/en/download/
查看装置版本:
$ node -v
NPM 的装置
Node.js 内置了 NPM 包管理工具,无需独自装置。
查看装置版本:
$ npm -v
降级 npm 到最新版本:
$ npm install npm -g
配置 NPM 应用淘宝镜像源
长期应用
$ npm install express --registry https://registry.npm.taobao.org
永恒应用
$ npm config set registry https://registry.npm.taobao.org
$ npm config get registry
$ npm info express
复原为原来的官网地址
$ npm config set registry https://registry.npmjs.org
应用 cnpm 代替
$ npm install cnpm -g --registry=https://registry.npm.taobao.org
$ cnpm install express