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

✂️ Build Setup

前置条件:

  • Node.js (Should be at least nodejs 6.9)
  • Git
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# install Hexo
$ npm install hexo-cli -g

# Create a new Hexo folder.
$ hexo init <blog-name>
$ cd <blog-name>
$ npm install

# Start the server.
$ hexo server

# Generate static files.
$ hexo generate # hexo g

# Deploy your website.
$ hexo deploy # hexo d

# One-click deployment
$ hexo generate --deploy # hexo g -d

✏️Q&A