From ca8e5a4baf29ceda76e4f1051692f35cb6f01516 Mon Sep 17 00:00:00 2001 From: NPM Mirror Bot Date: Sat, 12 Feb 2022 03:56:20 +0000 Subject: [PATCH] update https://registry.npm.taobao.org to https://registry.npmmirror.com --- 番外篇/使用Hexo搭建自己的博客.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/番外篇/使用Hexo搭建自己的博客.md b/番外篇/使用Hexo搭建自己的博客.md index 49362d2..a852386 100644 --- a/番外篇/使用Hexo搭建自己的博客.md +++ b/番外篇/使用Hexo搭建自己的博客.md @@ -26,7 +26,7 @@ git --version 我们可以使用npm来安装Hexo,npm是node.js的包管理工具,跟Python的pip工具作用一样,可以用它来安装依赖库和三方工具。在第一次使用npm的时候,我们可以先将npm的下载源更换为国内的淘宝镜像,这样下载的速度会有非常显著的提升。 ```Shell -npm config set registry https://registry.npm.taobao.org +npm config set registry https://registry.npmmirror.com ``` 接下来我们就通过npm来安装Hexo,命令如下所示。