Hexo的基本使用

本文最后更新于:1 年前

https://hexo.io/zh-cn/docs/commands

1. 初始化项目

1
$ hexo init [folder]

2. 新建文件

1
2
3
4
5
6
7
8
9
$ hexo new [layout] <title>
$ hexo new page --path 浏览器收藏夹/pages
# 创建pages.md


示例:
hexo new page --path 前端/js获取当前时间
# 创建 js获取当前时间.md,title默认为 page

https://hexo.io/zh-cn/docs/templates

可选参数(layout)如下:

模板 用途 回退
index 首页
post 文章 index
page 分页 index
archive 归档 index
category 分类归档 archive
tag 标签归档 archive
1
$ hexo new "post title with whitespace"

3. 文章内容详解

1
2
3
4
5
title: Hexo的基本使用  # 文章标题
index_img: /img/3.jpg # 首页图片
banner_img: /img/3.jpg # 文章页面图片
date: 2022-05-02 07:40:25 # 文章发布时间
tags: # 文章标签

4. 项目提交发布

参考:https://hexo.io/zh-cn/docs/github-pages
https://blog.csdn.net/sinat_37781304/article/details/82729029

1) hexo clean清除了你之前生成的东西,也可以不加。

1
hexo clean

2) hexo generate 顾名思义,生成静态文章,可以用 hexo g缩写

1
hexo generate

3) hexo deploy 部署文章,可以用hexo d缩写

1
hexo deploy

4) 启动服务器

参考:https://hexo.io/zh-cn/docs/commands

http://localhost:4000/
-p, –port 重设端口
-s, –static 只使用静态文件
-l, –log 启动日记记录,使用覆盖记录格式

1
hexo server

5. Hexo fluid主题更新

https://hexo.fluid-dev.com/docs/start/#%E6%9B%B4%E6%96%B0%E4%B8%BB%E9%A2%98

1
npm update --save hexo-theme-fluid

6. Hexo Fluid 用户手册

https://hexo.fluid-dev.com/docs/

7. 安装看板娘live2d

https://github.com/EYHN/hexo-helper-live2d
https://github.com/stevenjoezhang/live2d-widget

1) Install module:

1
npm install --save hexo-helper-live2d

2) Config

Add configuration in hexo’s _config.yml file or theme’s _config.yml.

An Example:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
live2d:
enable: true
scriptFrom: local
pluginRootPath: live2dw/
pluginJsPath: lib/
pluginModelPath: assets/
tagMode: false
log: false
model:
use: live2d-widget-model-wanko
display:
position: right
width: 150
height: 300
mobile:
show: true
react:
opacity: 0.7

3) 卸载

1
npm uninstall --save hexo-helper-live2d

99. 其他

① hexo d命令报错:ERROR Deployer not found: git

参考:

https://developer.aliyun.com/article/764974
解决
安装hexo-deployer-git:

1
npm install --save hexo-deployer-git

Hexo的基本使用
https://chris-z-su.github.io/2022/05/02/前端/Hexo的基本使用/
作者
Chris
发布于
2022年5月2日
许可协议