Node.js 和 NPM 的安装和配置
Posted 小伍
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Node.js 和 NPM 的安装和配置相关的知识,希望对你有一定的参考价值。
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
以上是关于Node.js 和 NPM 的安装和配置的主要内容,如果未能解决你的问题,请参考以下文章