hexo 博客在windows 10下快速搭建步骤: 0x1 安装tortoisegit。 1.1 新建Repository yourname.github.io。 1.2 开通 page 服务。 1.3 本地新建index.html(hello world) push到username.github.io <!DOCTYPE HTML> <html> <head> <title>yourname's Blog</title> </head> <body> <h1>Hello World</h1> <p>I'm hosted with GitHub Paes</p> </body> </html> 1.4 访问yourname.github.io 可以看到helloworld。 0x2 安装nodejs 2.1 http://nodejs.org 下载安装文件,点击安装。 2.2 配置npm的全局模块的存放路径以及cache的路: $ npm config set prefix "C:\Program Files\nodejs\node_global" $ npm config set cache "C:\Program Files\nodejs\node_cache" 2.3 设置环境变量 NODEPATH=C:\Program Files\nodejs\node_global 0x3 安装hexo 3.