nodejs设置镜像

1、npm镜像地址配置

javascript 复制代码
-- 查看 npm 安装目录
npm root -g
 
-- 查看 npm 配置信息
npm config list

-- 查询当前镜像配置
npm get registry

-- 或者仅修改 npm 命令镜像
-- 设置为淘宝镜像
npm config set registry https://registry.npmmirror.com
-- 修改为官方镜像
npm config set registry https://registry.npmjs.org/


-- 查看、更改缓存及全局安装地址
-- 1、查看npm的prefix和cache路径配置信息
npm config get cache
npm config get prefix
-- 2、设置路径(路径包含空格必须引号)
npm config set prefix "C:\Users\happy\AppData\Roaming\nodejs\node_data\npm_global"
npm config set cache "C:\Users\happy\AppData\Roaming\nodejs\node_data\npm_cache"

-- 使用npm命令安装的全局插件会保存在prefix目录中,需要将此加入系统环境变量才可以执行已安装插件命令

2、yarn 安装

javascript 复制代码
-- yarn (安装速度快,并行下载,缓存机制,本地缓存,可以断网使用)
npm install yarn -g
 
 -- 查询镜像配置
yarn config get registry
-- 设置淘宝镜像
yarn config set registry https://registry.npmmirror.com
-- 设置为官方镜像
yarn config set registry https://registry.yarnpkg.com
 
-- 或者可以安装淘宝定制命令 tyarn
cnpm i yarn tyarn -g
-- 安装检查
tyarn -v
 
-- 查看、修改 yarn 安装及缓存位置
-- 1、全局安装及缓存位置
yarn config get prefix
yarn config get cache
-- 2、修改全局安装及缓存位置
yarn config set global-folder "C:\Users\happy\AppData\Roaming\nodejs\node_data\yarn_global"
yarn config set cache-folder "C:\Users\happy\AppData\Roaming\nodejs\node_data\yarn_cache"
 
-- 使用yarn命令安装的全局插件会保存在prefix目录中,需要将此加入系统环境变量才可以执行已安装插件命令
 
-- 代理设置
-- 同 NPM
相关推荐
郑小憨2 小时前
Node.js NPM以及REPL(交互式解释器) 使用介绍(基础介绍 二)
开发语言·前端·javascript·npm·node.js
代码搬运媛2 小时前
前端开发利器:npm 软链接
前端·npm·node.js
棋小仙12 小时前
我自己nodejs练手时常用的一些库基础用法
前端·node.js
Xiaohong071614 小时前
三分钟速览:Node.js 版本差异与关键特性解析
node.js
. . . . .20 小时前
发布一个npm组件库包
前端·npm·node.js
鱼钓猫的小鱼干20 小时前
npm i 的时候报错: npm ERR! Error: EPERM: operation not permitted, rename
前端·npm·node.js
夏河始溢1 天前
一七八、Node.js PM2使用介绍
前端·javascript·node.js·pm2
熊的猫1 天前
webpack 核心模块 — loader & plugins
前端·javascript·chrome·webpack·前端框架·node.js·ecmascript
Missmiaomiao1 天前
npm install慢
前端·npm·node.js
理想不理想v2 天前
vue种ref跟reactive的区别?
前端·javascript·vue.js·webpack·前端框架·node.js·ecmascript