2017-08-08
Hexo Notes

Installation

Basic

# Install Node.js
sudo apt-get install nodejs

# Install node package manager (npm)
sudo apt-get install npm

# Install git
sudo apt-get install git # yum install git-core

# Install hexo
npm install -g hexo-cli

Hexo site folder and install theme

In this blog, I will install freemind:

$ hexo init blog #blog is the folder to contains all hexo related files
$ cd blog
$ npm install
$ git clone https://github.com/wzpan/hexo-theme-freemind.git themes/freemind
Read More