npm操作

2024-09-22  本文已影响0人  AC编程

一、安装Node.js

下载Node.js,https://nodejs.org/http://url.nodejs.cn/download/

二、npm切换淘宝镜像指令

切换到淘宝镜像

npm config set registry https://registry.npm.taobao.org

查看地址

npm config get registry

三、安装nrm、cnpm

3.1 安装nrm方便切换数据源
//全局安装nrm
npm install -g nrm

//查看可选的源。 其中,带*的是当前使用的源
nrm ls

//切换到taobao源
nrm use taobao

//测试相应源的响应时间
nrm test
3.2 安装cnpm
npm install -g cnpm --registry=https://registry.npmmirror.com
上一篇下一篇

猜你喜欢

热点阅读