发发同学的博客

hexo

安装Nodejs

更改npm源

官方源替换为 淘宝npm源

1
npm install -g cnpm --registry=https://registry.npm.taobao.org

安装Hexo

1
npm install -g hexo-cli

Hexo3.0之后把server独立出来了,所以需要单独安装。

1
npm install hexo-server --save

创建hexo工程

1
hexo init blog

新建POST

1
2
cd blog
hexo new “HelloWorld”

生成静态文件

1
hexo generate

运行hexo服务器

1
hexo server

清除

1
hexo clean

发布

1
hexo deploy