hexo
fast, simple static blog framework
TLDR
Create new blog
$ hexo init [blog-name]
Create new post$ hexo new [post-title]
Generate static files$ hexo generate
Start local server$ hexo server
Deploy to remote$ hexo deploy
Clean generated files$ hexo clean
SYNOPSIS
hexo command [options]
DESCRIPTION
Hexo is a fast, simple static blog framework. It uses Markdown for content and supports themes, plugins, and multiple deployment targets.The framework generates static HTML from Markdown posts. It's popular for developer blogs and documentation sites.
PARAMETERS
COMMAND
Subcommand to execute.init
Initialize new blog.new TITLE
Create new post/page.generate, g
Generate static files.publish TITLE
Move a draft into the posts folder as a published post.server, s
Start local server.deploy, d
Deploy to remote.list TYPE
List site data (for example posts, pages, routes, tags).clean
Remove the cache file (`db.json`) and generated `public` directory.-p, --port PORT
Server port (default 4000).-w, --watch
Watch for file changes (with `generate` or `server`).--help
Display help information.
CAVEATS
Node.js required. Learning curve for themes. Plugin compatibility varies.
HISTORY
Hexo was created by Tommy Chen as a fast static site generator for blogs, gaining popularity in the developer community.
