使用博客框架 hexo 搭建本地博客,可切换主题

一、环境准备

安装node.js

Windows Powershell 检查是否安装成功: node -v

二、安装 hexo

使用 nodejs 的包管理工具 npm 安装 hexo, 在终端 Powershell 中输入下面的命令

1
npm install -g hexo-cli

三、初始化 hexo

自选合适的目录,新建文件夹 folder

1
2
3
cd folder
hexo init
npm install

四、主题配置

  • 安装主题

    • 以 Ayer 主题为例

      • GitHub 仓库

      • 安装步骤

      • 注意 npm i hexo-theme-ayer -S 会安装到 node_modules, 用git clone 则是在themes下面,提交代码时要 add node_modules/hexo-theme-*/来包含自定义主题

      • 注意安装后再使用 npm update hexo-theme-ayer -S 会覆盖当前主题, 自己的配置被覆盖!!! 不要 npm 更新, 或者先保存下该主题的配置文件(已经提交过的包含了上次的配置就还好)

  • 切换主题

    • 修改主目录下的_config.yml文件配置

      1
      2
      3
      4
      5
      # Extensions
      ## Plugins: <https://hexo.io/plugins/>
      ## Themes: <https://hexo.io/themes/>
      theme: ayer
      # theme: landscape