blog 搭建

所需工具

  • Git 客户端
  • Node.js
  • hexo

工具安装

hexo 安装
1
npm install -g hexo-cli

创建站点

修改npm源

npm config set registry “https://registry.npm.taobao.org

初始化站点

进入要创建的文件夹,如 D:\proj

1
2
3
hexo init myblog
cd myblog
npm install
本地运行

如果只是想看在本地运行,可直接

1
2
hexo generate
hexo server (或 hexo server -p 9090)
Github Pages 运行

创建新 rep

image-20200109175854307

1
xxj123go.github.io
修改 _config.yml
1
2
3
4
deploy:
type: git #部署的类型
repository: https://github.com/xxj123go/xxj123go.github.io.git # 仓库地址
branch: master #分支名称
安装插件
1
npm install hexo-deployer-git --save
托管

hexo generate 可缩写为 hexo g , hexo deploy 可缩写为 hexo d

1
hexo d -g 
前往
1
http://用户名.github.io

访问: https://xxj123go.github.io/

主题

1
2
#next主题
git clone https://github.com/theme-next/hexo-theme-next theme/next