Setup a Blog with Hexo and GitHub Pages

Local - Hexo Site
Reference: Hexo and its documentation.

Hexo is a blog framework based on Node.js. In this article, we will initialize a Hexo site on local disk, and talk about how to publish it to GitHub Pages, which would use Git indirectly.

Prepare Environment
On Arch Linux, you need just one command to do all the work below with your favorite AUR helper:

$ yay -Syu nodejs-hexo-cli git
Then you can skip to initialize site step.

Yes this is showing off, it’s not that simple on most of other platforms.

Node.js
Go to Download | Node.js, choose and install the latest 64-bit LTS version.

After installation, run node -v and npm -v to verify both Node.js enviornment and its package manager:

Verify Node.js

Git
Click this official link to download and install. VS Code is recommended for default editor, leave other options default if you don’t understand, all these stuff could be configured when needed later.

Run git –version to verify installation:

Verify Git

Then config the user name and email, the latter should be the same as your GitHub commit email.

$ git config –global user.name “Your Name”
$ git config –global user.email your.mail@example.com
Hexo
Run npm i -g hexo-cli and hexo version to install and verify Hexo.

There may be two warnings like below, saying that an optional dependency named fsevent was skipped since it’s macOS only (npm, you have to say, huh?). We can just ignore this.

Install and Veify Hexo

Initialize Hexo Site
Change to your prefered directory, and run hexo init name (use your prefered name) and npm install to establish site and update dependencies. You can also make an empty subdirectory and run hexo init and npm install in it, I applied this method below:

Initialize Hexo Site

Now we got a local folder containing a default blog’s source. I wrote another article for modifiying it, see Customize Hexo Blog with NexT Theme.

Preview Blog
In site directory run hexo server or its abbreviation hexo s to start the local server. You can also run hexo s -i 192.168.. (use your PC’s LAN IP) if want to preview on other devices in LAN like phones. If you want to change the port or if you’re encountering EADDRINUSE errors, use the -p option to set a different port.

According to output, visit http://localhost:4000:

Preview Blog

Preview operating would be frequent when managing blog, you may consider to write a script to save time.

Online - GitHub Pages
What is GitHub Pages? —— GitHub Pages is a static site hosting service designed to host your personal,organization,or project pages directly from a GitHub repository.

Of course Hexo is a static blog framework and we already have a Hexo site on local disk, now we got to create a particular repository and configure a bit more, soon we’ll arrive at “username.github.io” online.

Create Dedicated Repository
Repository naming scheme refers to User and Organization Pages sites.

Create a new repository like below, replace username with your own (same as Owner on the left).

Create Dedicated Repository

Publish Blog Online
This chapter is left for reference only: I’m managing blog in a better workflow, including auto deployment, see here: Manage Hexo Blog with Git and Travis CI.

Reference: Deployment | Hexo

Install Deployer Plugin
Run npm i –save hexo-deployer-git in site folder.

Deployment Configuration
Open site configuration file _config.yml, find deploy: part and edit:

deploy:
type: git
repo: https://github.com/username/username.github.io # use your own username
branch: master
Pay attention to syntax of YAML: the colon must be followed by a space.

First Deployment
In site folder run hexo deploy –generate or its abbreviation hexo d -g, this let Hexo deploy blog to repository after generating the static files.

坚持原创技术分享,您的支持将鼓励我继续创作!
0%