Blogger Information
Blog 11
fans 0
comment 0
visits 13931
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
使用阿里云npm镜像加速
菜鸟博客
Original
662 people have browsed it

1. 什么是npm?

npm(node package manager)是随同NodeJS一起安装的包管理工具,能解决NodeJS代码部署上的很多问题,常见的使用场景有以下几种:

允许用户从NPM服务器下载别人编写的第三方包到本地使用。

允许用户从NPM服务器下载并安装别人编写的命令行程序到本地使用。

允许用户将自己编写的包或命令行程序上传到NPM服务器供别人使用。

由于新版的nodejs已经集成了npm,所以之前npm也一并安装好了。同样可以通过输入 "npm -v" 来测试是否成功安装。命令如下,出现版本提示表示安装成功

Npm可以理解为一个命令行工具,它的使命就是帮你为项目自动安装所依赖的开发包。

composer是php包依赖管理工具,node.js包管理工具是npm。可以这么去理解。

http://registry.npmjs.org是 npm 的默认的开发包仓库,在npm命令行工具里面我们可以指定使用不同的仓库。http://registry.npmjs.org是官方的仓库。其他的仓库都是定时同步官方的仓库。也就是说如果切换到其他仓库代码包有一定的延迟。但是切换成国内的镜像源包的下载速度会很快。npm安装插件过程:从http://registry.npmjs.org下载对应的插件包(该网站服务器位于国外,所以经常下载缓慢或出现异常)

阿里云官方镜像站:https://developer.aliyun.com/mirror/

2.查看npm源地址设置:(默认官方镜像地址)

npm config get registry

https://registry.npmjs.org/

3.配置阿里巴巴镜像地址:(推荐,速度够快,同步频率快,稳定)

阿里云官方镜像站:https://developer.aliyun.com/mirror/

Npm阿里云地址:

http://www.npmmirror.com

npm config  set registry  https://registry.npmmirror.com

 

原淘宝 npm 域名即将停止解析,正如在《淘宝 NPM 镜像站喊你切换新域名啦》 中预告的那样:http://npm.taobao.org 和 http://registry.npm.taobao.org 将在 2022.06.30 号正式下线和停止 DNS 解析。域名切换规则:

http://npm.taobao.org => http://npmmirror.com

http://registry.npm.taobao.org => http://registry.npmmirror.com

 

 

4.如果需要解除镜像并恢复到官方源,请执行以下命令:

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

 


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post