操作系统:Windows 11
测试日期:2024年4月1日

Hexo安装

首先需要安装

  • Node.js
  • Git

npm install -g hexo-cli

判断安装是否成功 hexo -v

创建一个新文件夹用于存放站点相关配置文件,进入文件夹目录

1
2
hexo init
npm install

hexo 生成与本地服务启动

1
2
hexo g
hexo s

hexo 个人博客部署

1
2
3
4
5
6
7
8
9
hexo d

output:
INFO Validating config
ERROR Deployer not found: git


npm install hexo-deployer-git --save
hexo d

Reference

Hexo Doc
Node.js
Github + Hexo 搭建个人博客教程
解决 hexo d 命令错误提示 Deployer not found: git
Hexo butterfly 主题美化
Hexo butterfly 美化

Hexo 常用命令

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
npm install hexo -g # 安装 hexo
npm update hexo -g # 升级
hexo init # 初始化博客

hexo n "我的博客"
hexo new "我的博客" # 新建文章
hexo g
hexo generate #生成
hexo s
hexo server # 启动服务预览
hexo d
hexo deploy # 部署

hexo server #Hexo会监视文件变动并自动更新,无须重启服务器
hexo server -s #静态模式
hexo server -p 5000 #更改端口
hexo server -i 192.168.1.1 #自定义 IP
hexo clean #清除缓存,若是网页正常情况下可以忽略这条命令