Skip to content

Update https://registry.npm.taobao.org to https://registry.npmmirror.com #865

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 番外篇/使用Hexo搭建自己的博客.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,命令如下所示。
Expand Down