使用Github搭建Hexo

步骤

配置

  • 下载Node.js

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    git clone git://github.com/joyent/node.git 
    cd node
    git checkout # 查看分支版本
    git checkout v0.4.10
    cd ..
    sudo chmod 755 -R node
    cd node
    ./configure
    sudo make
    sudo make install
    node -v
    npm config set registry 'https://registry.npm.taobao.org '
    sudo npm install -g hexo

    hexo init <folder> #执行init命令初始化hexo到你指定的目录
    hexo generate #自动根据当前目录下文件,生成静态网页
    hexo server #运行本地服务
浏览器输入http://localhost:4000就可以看到效果。

[npm安装一些包失败](https://cnodejs.org/topic/4f9904f9407edba21468f31e)