1.环境准备
- node.js:版本需不低于 10.13,下载地址:https://nodejs.cn/download/
- git:下载地址:(windows)https://git-scm.com/download/win
# 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