站点搭建过程
基于 hexo 搭建了自己的站点,在此发布一下搭建教程。
依赖
- 配置 node.js
- 配置 hexo
定制
- 设置 theme
命令行操作
hexo new <title>
创建新文章
hexo g
构建静态页面(
hexo generate
)hexo clean
清除已构建的页面
hexo s
本地服务器(
hexo server
)hexo d
发布、部署(
hexo deploy
)
NPM 代理
特别的,如果 ping raw.githubusercontent.com
不通,可能需要设置代理。以本机为例,代理设置方式:
npm config set proxy=http://127.0.0.1:7890
npm config set registry=http://registry.npmjs.org