安装Git
https://git-scm.com/
安装nodejs
http://nodejs.cn/download/
安装hexo
1 | npm install -g hexo-cli |
安装swig
1 | npm i hexo-renderer-swig |
安装next主题
1 | git clone https://github.com/iissnan/hexo-theme-next.git themes/next |
安装Git插件
1 | npm install hexo-deployer-git --save |
安装图片插件
1 | npm install hexo-asset-image --save |
安装思维导图插件
1 | npm install hexo-simple-mindmap |
新建文章
1 | hexo new xxx |
清除缓存
1 | hexo c |
生成静态网页
1 | hexo g |
部署到远端
1 | hexo d |
启动本地服务
1 | hexo s |