9-14|npm install --global windows-build-tools 安装太慢了,能够指定国内源

简介: 9-14|npm install --global windows-build-tools 安装太慢了,能够指定国内源

如果你在中国,并且发现`npm`的包下载速度很慢,那么很可能是因为默认的npm源在国外。为了提高下载速度,你可以使用淘宝的npm镜像。

以下是使用淘宝npm镜像的方法:

1. **临时使用**

 ```

 npm install --global windows-build-tools --registry=https://registry.npm.taobao.org

 ```

2. **永久配置**

 ```

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

 ```

 这样每次使用npm install时都会默认使用淘宝的npm镜像。

3. **使用cnpm**  

 你也可以使用`cnpm`(淘宝的npm版本):

 ```

 npm install -g cnpm --registry=https://registry.npm.taobao.org

 ```

 之后,你可以使用`cnpm`代替`npm`来安装包。

但需要注意的是,如果你在使用某些特定的包时遇到问题,可能需要切换回官方的npm源(或其他镜像)来查看是否是源的问题。

要恢复到默认的官方源,可以使用:

```

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

```


相关文章
|
1月前
|
数据安全/隐私保护 Windows
安装 Windows Server 2019
安装 Windows Server 2019
|
1月前
|
Windows
安装 Windows Server 2003
安装 Windows Server 2003
|
1月前
|
NoSQL Shell MongoDB
Windows 平台安装 MongoDB
10月更文挑战第10天
39 0
Windows 平台安装 MongoDB
|
1月前
|
Windows Python
Windows安装dlib,遇到问题汇总解决
Windows安装dlib,遇到问题汇总解决
31 4
|
1月前
|
资源调度 前端开发 JavaScript
React 安装(NPM)
10月更文挑战第6天
59 1
|
1月前
|
缓存 资源调度 持续交付
在清空NPM缓存后,我如何检查是否所有依赖都已正确安装?
【10月更文挑战第5天】在清空NPM缓存后,我如何检查是否所有依赖都已正确安装?
|
1月前
|
Oracle 关系型数据库 MySQL
Mysql(1)—简介及Windows环境下载安装
MySQL 是一个流行的关系型数据库管理系统(RDBMS),基于 SQL 进行操作。它由瑞典 MySQL AB 公司开发,后被 Sun Microsystems 收购,现为 Oracle 产品。MySQL 是最广泛使用的开源数据库之一,适用于 Web 应用程序、数据仓库和企业应用。
53 2
|
1月前
|
JavaScript Windows
windows安装vue
windows安装vue
|
1月前
|
应用服务中间件 Apache Windows
免安装版的Tomcat注册为windows服务
免安装版的Tomcat注册为windows服务
107 3
|
22天前
|
Linux 网络安全 虚拟化
适用于Linux的Windows子系统(WSL1)的安装与使用记录
并放到启动文件夹,就可以开机自动启动了。
26 0