很多人都想搭建自己的博客,但是奈何技术有限,服务器部署,HTML,域名解析,等等,这一大堆东西可真有的折腾。但是如果有这样一个机会,不需要太复杂的操作,不要服务器,不要域名,不用写html,你愿意去尝试吗?
优点
不需要服务器,github免费提供的托管服务
不需要域名,github同样提供了一个.io的域名
不用自己写xml、hexo提供了很多开源的博客模板。
便于维护更新,换风格直接换模板就行。
1. 安装Nodejs
1
| npm install -g cnpm --registry=http://registry.npm.taobao.org
|
2. 安装hexo框架
1
| cnpm install -g hexo-cli
|
3. 创建博客
4. 博客放置到Github
1
| cnpm install --save hexo-deployer-git
|
- Github创建一个新的仓库 YourGithubName.github.io:
必须与Github名字一致,YourGithubName.github.io
例:Dongyx1128的Github与Dongyx1128的博客
5. 博客发布个性化
- 启动本地服务,至localhost:4000查看效果
1
| https://YourGithubName.github.io/
|
6. 配置_config.yml
1 2 3 4 5 6
| // Deployment Docs: https://hexo.io/docs/deployment.html deploy: type: git repo: https://github.com/YourGithubName/YourGithubName.github.io.git branch: master
|