hexo 发表于 2017-04-29 安装Nodejs更改npm源官方源替换为 淘宝npm源 1npm install -g cnpm --registry=https://registry.npm.taobao.org 安装Hexo1npm install -g hexo-cli Hexo3.0之后把server独立出来了,所以需要单独安装。1npm install hexo-server --save 创建hexo工程1hexo init blog 新建POST12cd bloghexo new “HelloWorld” 生成静态文件1hexo generate 运行hexo服务器1hexo server 清除1hexo clean 发布1hexo deploy