npm安装
1
npm install hexo -g
查看版本号
1
hexo -v
初始化项目
1
hexo init
发布
1
hexo g
启动
1
hexo server -p 8080
创建新页面
1
hexo new post "***"
发布到github
安装github发布扩展
1
npm install hexo-deployer-git --save
配置__config.yml,末尾添加
1
2
3
4
5
6# Deployment
## Docs: https://hexo.io/docs/deployment.html
deploy:
type: git
repository: git@github.com:legatoplay/legatoplay.github.io.git
branch: master发布到github
1
hexo d -g