Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

My Hexo Deployment Journey

  1. Environment Setup
    Installed Node.js v16.x and Git on Windows 11. Verified installation with:
    1
    2
    node --version
    git --version
  2. Hexo Initialization
    Created project folder and installed hexo-cli:
    1
    2
    3
    4
    npm install -g hexo-cli
    hexo init blog
    cd blog
    npm install
  3. Theme Configuration
    Chose butterfly theme with enhanced features:
    1
    npm install hexo-theme-butterfly --save
    Configured _config.yml for GitHub Pages deployment.
  4. Deployment
    Deployed to GitHub Pages:
    1
    2
    3
    hexo clean
    hexo g
    hexo d
  5. Domain Configuration
    Configured domain name with GitHub Pages settings.