Hexo plugin ecosystem¶
The Hexo plugin ecosystem consists of various npm packages that extend the functionality of a Hexo static site generator.^[600-developer-blog-hexo-blog-create-blog-hexo.md] These plugins handle diverse tasks such as deployment, content generation, search functionality, and site optimization.
Content and Asset Management¶
Plugins in this category enhance how content is processed and assets are handled.
hexo-tag-cloud: Installs a tag cloud widget for the site^[600-developer-blog-hexo-blog-create-blog-hexo.md].hexo-asset-image: Enables the use of relative paths for images^[600-developer-blog-hexo-blog-create-blog-hexo.md].hexo-renderer-marked: Serves as a renderer for Markdown and is often used or updated to fix issues related to missing images in posts^[600-developer-blog-hexo-blog-update-hexo.md].
Site Generation and SEO¶
These plugins generate necessary files for search engines and site navigation.
hexo-generator-sitemap: Generates a sitemap XML file to help search engines index the site^[600-developer-blog-hexo-blog-create-blog-hexo.md].hexo-generator-feed: Creates RSS feeds for the blog^[600-developer-blog-hexo-blog-create-blog-hexo.md].hexo-migrator-rss: Installs the necessary tool for RSS migration^[600-developer-blog-hexo-blog-create-blog-hexo.md].
Search Functionality¶
To improve content discoverability, specific generators can be added to create search indices.
hexo-generator-search: Adds search capabilities^[600-developer-blog-hexo-blog-create-blog-hexo.md].hexo-generator-searchdb: Provides a database-backed search solution^[600-developer-blog-hexo-blog-create-blog-hexo.md].
Deployment and Development Workflow¶
Plugins facilitate the automation of deploying the site to servers and improving the local development experience.
hexo-deployer-git: A standard plugin for deploying the generated site to Git repositories^[600-developer-blog-hexo-blog-create-blog-hexo.md, 600-developer-blog-hexo-blog-update-hexo.md].hexo-browsersync: Enables automatic page refreshing during development and aids in mobile debugging^[600-developer-blog-hexo-blog-create-blog-hexo.md].
Related Concepts¶
- [[Hexo]]
- [[Static site generator]]
- [[npm]]
Sources¶
- 600-developer-blog-hexo-blog-create-blog-hexo.md
- 600-developer-blog-hexo-blog-update-hexo.md