抱歉,您的浏览器无法访问本站
本页面需要浏览器支持(启用)JavaScript
了解详情 >

摘要:本文介绍了Hexo博客框架的安装和使用方法,包括环境配置和初始化博客并新建文章,以及分类和标签的设置。

环境

Windows 10 企业版 LTSC 21H2
Node 18.14.0
NPM 9.3.1
Git 2.37.3
Hexo 4.3.1

1 简介

Hexo是一个快速、简洁且高效的博客框架。Hexo使用Markdown(或其他标记语言)解析文章,在几秒内,即可利用靓丽的主题生成静态网页。

官网:https://hexo.io/zh-cn

2 环境

2.1 安装Git

由于初始化博客目录需要Git支持,并且Hexo的某些命令需要在bash命令行中执行,因此需要安装Git工具。

下载方式:

如果不太了解Git工具,可以使用默认设置安装。

安装结束后,右键选择Git Bash Here进入bash命令行。

输入git --version命令查看Git的安装版本:

bash
1
2
3
momashanhe@localhost momashanhe $ git --version
git version 2.37.3.windows.1
momashanhe@localhost momashanhe $

需要注意的是,默认安装的2.37.3版本在初始化本地Git项目的时候,默认创建的分支还是master分支,可以在安装的时候自定义:
20240225091105-默认分支

2.2 安装Node

Hexo基于Node,搭建过程中还需要使用NPM(Node包管理工具,安装Node时默认安装)。

下载方式:

使用默认配置安装即可。

在bash命令行输入node -v命令查看Node版本:

bash
1
2
3
momashanhe@localhost momashanhe $ node -v
v18.14.0
momashanhe@localhost momashanhe $

在bash命令行输入npm -v命令查看NPM版本:

bash
1
2
3
momashanhe@localhost momashanhe $ npm -v
9.3.1
momashanhe@localhost momashanhe $

NPM是包管理工具,通过命令将安装包使用的源设置为淘宝镜像,速度会快一些:

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

使用命令查看安装使用的源:

bash
1
npm config get registry

2.3 安装Hexo

在bash命令行中使用NPM安装Hexo:

bash
1
npm install hexo-cli -g

安装结束后,使用hexo -v命令查看Hexo版本:

bash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
momashanhe@localhost momashanhe $ hexo -v
hexo-cli: 4.3.1
os: win32 10.0.19044
node: 18.14.0
v8: 10.2.154.23-node.22
uv: 1.44.2
zlib: 1.2.13
brotli: 1.0.9
ares: 1.18.1
modules: 108
nghttp2: 1.51.0
napi: 8
llhttp: 6.0.10
uvwasi: 0.0.14
acorn: 8.8.1
simdutf: 3.1.0
undici: 5.14.0
openssl: 3.0.7+quic
cldr: 42.0
icu: 72.1
tz: 2022g
unicode: 15.0
ngtcp2: 0.8.1
nghttp3: 0.7.0
momashanhe@localhost momashanhe $

3 使用

3.1 初始化博客目录

在电脑中新建博客目录,右键进入bash命令行,使用hexo init命令初始化博客目录:

bash
1
2
3
4
5
momashanhe@localhost momashanhe $ hexo init
INFO Cloning hexo-starter https://github.com/hexojs/hexo-starter.git
INFO Install dependencies
INFO Start blogging with Hexo!
momashanhe@localhost momashanhe $

目录结构如下:
20240225094535-目录结构

3.2 博客预览

使用hexo generate命令生成博客内容,也可以简写为hexo g命令:

bash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
momashanhe@localhost momashanhe $ hexo generate
INFO Validating config
INFO Start processing
INFO Files loaded in 224 ms
INFO Generated: archives/index.html
INFO Generated: archives/2024/02/index.html
INFO Generated: archives/2024/index.html
INFO Generated: index.html
INFO Generated: css/style.css
INFO Generated: js/script.js
INFO Generated: fancybox/jquery.fancybox.min.css
INFO Generated: fancybox/jquery.fancybox.min.js
INFO Generated: js/jquery-3.6.4.min.js
INFO Generated: css/images/banner.jpg
INFO Generated: 2024/02/26/hello-world/index.html
INFO 11 files generated in 235 ms
momashanhe@localhost momashanhe $

使用hexo server命令启动本地预览,也可以简写为hexo s命令:

bash
1
2
3
4
momashanhe@localhost momashanhe $ hexo server
INFO Validating config
INFO Start processing
INFO Hexo is running at http://localhost:4000/ . Press Ctrl+C to stop.

根据提示,在浏览器输入地址访问博客:http://localhost:4000/

可以看到博客的默认界面:
20240225104523-本地预览

可以同时按下Ctrl+C停止博客。

3.3 新建文章

使用hexo new test命令创建标题为test的文章。

执行后在博客目录/source/_posts目录中会自动新增对应的Markdown文件。

也可以指定标题和目录:

bash
1
hexo new post test -p demo/test

可以通过文本编辑器修改文章,保存后在本地预览:

bash
1
hexo clean && hexo server

3.4 站点设置

修改博客目录下的_config.yml配置文件,修改的Site配置项。

4 分类和标签

4.1 分类

进入博客目录,打开bash命令行,添加分类页:

bash
1
hexo new page categories

打开sources/categories/index.md文件,增加分类配置:

index.md
1
2
3
4
5
---
title: 所有分类
date: 2024-02-25 21:45:11
type: "categories"
---

使用分类:

index.md
1
2
3
---
categories:
---

4.2 标签

进入博客目录,打开bash命令行,添加标签页:

bash
1
hexo new page tags

打开sources/tags/index.md文件,增加标签配置:

index.md
1
2
3
4
5
---
title: 所有标签
date: 2024-02-25 21:53:29
type: "tags"
---

使用标签:

index.md
1
2
3
---
tags: []
---

评论