mirror of
https://github.com/Kxsso/jcutmirror.git
synced 2026-03-29 16:27:01 +08:00
31 lines
404 B
Plaintext
31 lines
404 B
Plaintext
---
|
|
mirrorId: npm
|
|
---
|
|
|
|
### Yarn
|
|
|
|
#### 临时修改
|
|
|
|
```bash
|
|
yarn add <package> --registry https://mirrors.zju.edu.cn/npm
|
|
```
|
|
|
|
#### 永久修改
|
|
|
|
```bash
|
|
yarn config set registry https://mirrors.zju.edu.cn/npm
|
|
```
|
|
|
|
### NPM
|
|
|
|
#### 临时修改
|
|
|
|
```bash
|
|
npm install <package> --registry=https://mirrors.zju.edu.cn/npm
|
|
```
|
|
|
|
#### 永久修改
|
|
|
|
```bash
|
|
npm config set registry https://mirrors.zju.edu.cn/npm
|
|
``` |