官网:https://hexo.io/

1.环境准备

# Linux
apt-get install git-core
yum install git-core

2.检查环境

node -v
git version

3.安装Hexo

npm install -g hexo-cli

4.建站

hexo init test
cd test
npm install

5.使用

# 启动
hexo g
hexo s -p 80
# 新建文章
hexo new "test post"
# 生成的文章路径:test/source/_posts
# markdown语法:https://markdown.com.cn/
# 发布文章
hexo g
hexo s -p 80

6.视频