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

小伍
139 声望4 粉丝