Hexo – A fast, simple & powerful blog framework 一个简单、强大、且快速的静态博客生成工具。

相比于Jekyll(基于ruby环境),Hexo 要简单方便些,首先原因

于是决定在Hexo上试试,当然首先安装nodejs!由于是在windows下,下载node-v5.9.1-x64.msi,一路next

  1. nodejs官网

官网有LST 4.4.1长期支持版和Stable 5.9.1最新稳定版,可见nodejs是个版本狂魔。。个人建议安装最新稳定版,npm升级到了3.4,没有了windows下文件夹层数过多而无法移动的问题。

npm常用命令

  1. Hexo.io官网

安装Hexo

$ npm install -g hexo-cli 
$ mkdir blog && cd blog
$ hexo init
$ npm install

这里我遇到了一个问题,由于我实在Windows下安装,Git bash环境下(MINGW)执行hexo会找不到命令,检查了几遍环境变量,添加了NODE_PATH,修改npm全局目录,都不行,最后才发现可能是MINGW里的环境配置没有添加。

echo $PATH

输出系统变量,发现的确没有Hexo模块的目录于是

$ vim ~/.bashrc
export PATH="$PATH:/d/nodejs/node_global"
$ source /etc/profile

这时候再使用hexo命令终于可以了

$ hexo server

这时候又出现问题了,server参数无效。。原因是hexo 3.x以后server服务独立开了,解决办法:

$ npm install hexo-server --save

运行后访问http://localhost:4000,成功,默认主题太简单,后面在来配置和更换主题

配置文件_config.yml

文档里已经说的很详细了,这里就不在多说了,大多配置都很明显,这里挑几个值得注意的

# Site
title: opso's blog
subtitle: "洛阳亲友如相问,人丑就该多读书。"
description: "opso's 技术博客"
author: opso
language: 
- zh-cn
- en
timezone: Asia/Shanghai
url: http://yoursite.com
root: /
permalink: :year/:month/:day/:title/
permalink_defaults:
# Directory
source_dir: source
public_dir: public
tag_dir: tags
archive_dir: archives
category_dir: categories
code_dir: downloads/code
i18n_dir: :lang
skip_render:
# Writing
new_post_name: :title.md # File name of new posts
default_layout: post
titlecase: false # Transform title into titlecase
external_link: true # Open external links in new tab
filename_case: 0
render_drafts: false
post_asset_folder: false
relative_link: false
future: true
highlight:
  enable: true
  line_number: true
  auto_detect: false
  tab_replace:
# Category & Tag
default_category: uncategorized
category_map:
tag_map:
# Archives 默认值为2,这里都修改为1,相应页面就只会列出标题,而非全文
archive: 1
category: 1
tag: 1
# Date / Time format
## Hexo uses Moment.js to parse and display date
## You can customize the date format as defined in
## http://momentjs.com/docs/#/displaying/format/
date_format: YYYY-MM-DD
time_format: HH:mm:ss
# Pagination
## Set per_page to 0 to disable pagination
per_page: 10
pagination_dir: page
# theme
theme: indigo
# Deployment
deploy:
  type: git
  repository: git@github.com:opso-code/opso-code.github.io.git
  branch: master

主题和hexo部署

Hexo主题更换很方便,只要将主题文件夹下载好放到theme文件夹下,修改主题的_config.yml,然后修改根目录下的_config.ymltheme主题名。

$ npm install hexo-deployer-git --save
$ hexo deploy

将生成的静态页面文件自动提交到GIT上,github地址可以在_config.yml里配置,非常方便, 配置好Git pages上传之后过会就可以访问了 :)