Files
Linux/Docs/NPM加速配置.md
offends 9bd08c819e
All checks were successful
continuous-integration/drone Build is passing
first commit
2025-12-20 21:15:25 +08:00

29 lines
357 B
Markdown

> 本文作者:丁辉
# NPM加速配置
- 淘宝镜像源
```bash
npm config set registry https://registry.npm.taobao.org
```
验证
```bash
npm config get registry
```
- 华为云镜像源
```bash
npm config set registry https://mirrors.huaweicloud.com/repository/npm/
```
验证
```bash
npm config get registry
```