安装
- hexo 依赖 nodejs,nodejs可以使用nvm安装,https://nodejs.org/en/download/package-manager,安装nvm后需要重启终端,用于加载环境变量
- 使用npm:
npm install hexo-cli -g
。注:npm是nodejs的包管理工具
日常命令
- 创建工作目录:hexo init 目录
- 清除缓存 :
hexo clean
- 构建渲染:
hexo g
- 启动本地服务:
hexo s
- 上传服务器部署:
hexo d
文件头
1 | --- |
配置
- 安装next主题:https://github.com/theme-next/hexo-theme-next
- 安装搜索插件:
hexo-generator-searchdb
创建分类文件:
- 添加页面:
hexo new page categories
- 页面md(source/categories/index.md)添加
type: categories
- 添加页面:
_config.yml比较繁锁直接用对比截图
hexo
next