Hexo是一个简单、快速、强大的基于 Github Pages 的博客发布工具,支持Markdown格式,有众多优秀插件和主题。
1.安装npm
前往node.js官网下载并安装
国内使用npm速度较慢,可选择切换至淘宝镜像
全局切换镜像
$ npm config set registry http://registry.npm.taobao.org/
查看镜像使用状态
$ npm get registry
全局切换回官方源
$ npm config set registry http://www.npmjs.org
2.安装git
前往git官网下载并安装
3.GitHub创建仓库
新建仓库
username.github.io
,username是你的GitHub用户名
4. 全局安装hexo
$ npm install -g hexo
5. 初始化hexo项目
$ hexo init blog
6.生成模板
$ hexo g
7. 本地预览
$ hexo s
8.上传至GitHub
安装插件
$ npm install hexo-deployer-git --save
修改相关配置
$ vim blog/_config.yml
1
2
3
4deploy:
type: git
repository: git@github.com:username/username.github.io.git
branch: master开始上传
$ hexo d
9.访问测试
上传成功后,访问username.github.io
,即可看到效果
首次上传需等待大概半个小时才能看到效果
- 本文作者: 小蜗牛
- 本文链接: https://vitaminvi.github.io/2020/07/16/从0到1安装Hexo/
- 版权声明: 本博客所有文章除特别声明外,均采用 MIT 许可协议。转载请注明出处!