npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

hexo-plugin-i18n-canonical

v1.3.0

Published

Hexo plugin to manage canonical URLs for multilingual sites

Readme

hexo-plugin-i18n-canonical

Hexo plugin to manage canonical URLs for multilingual sites.

Features

  • Automatically adds canonical tags to all pages
  • Automatically adds hreflang tags for all language variants
  • Points translated content to source language (default: English)
  • Supports custom canonical language via canonical_lang front matter
  • Supports zh-TW, zh-CN, and ja translations
  • Skips pages that already have canonical tags
  • Enhanced URL normalization and trailing slash handling
  • Improves SEO for multilingual content

Installation

From the root of your project:

npm install ./hexo-plugin-i18n-canonical

Or add to package.json:

{
  "dependencies": {
    "hexo-plugin-i18n-canonical": "file:../hexo-plugin-i18n-canonical"
  }
}

Configuration

Optional configuration in _config.yml:

canonical_multilang:
  enable: true      # Default: true (set to false to disable)
  default_lang: en  # Default: 'en'
  languages:        # Default: ['en', 'zh-TW', 'zh-CN', 'ja']
    - en
    - zh-TW
    - zh-CN
    - ja

To disable the plugin:

canonical_multilang:
  enable: false

Usage

The plugin automatically:

  1. Detects language from lang front matter
  2. Generates canonical URLs pointing to English version (unless canonical_lang is set)
  3. Adds hreflang tags for all language variants
  4. Marks canonical language with data-canonical="true" attribute
  5. Respects canonical_lang front matter for non-English canonical content

Front Matter Options

canonical_lang: Specify which language version is the canonical/original content

---
title: "CISP邮件安全"
lang: zh-CN
canonical_lang: zh-CN  # This zh-CN version is the canonical
---

When canonical_lang is set:

  • The page's canonical URL points to itself
  • Other language versions should use original_lang_url to redirect to this version
  • Hreflang tags still generated for all language variants

Examples

Default Behavior (English as canonical):

All translated pages point to English version:

  • Japanese page /ja/2025/10/article/ → canonical: https://neo01.com/2025/10/article
  • zh-TW page /zh-TW/tools/ → canonical: https://neo01.com/tools
  • zh-CN page /zh-CN/about/ → canonical: https://neo01.com/about
  • English page /about/ → canonical: https://neo01.com/about

With canonical_lang (Non-English canonical):

  • /zh-CN/2025/10/cisp/ with canonical_lang: zh-CN → canonical: https://neo01.com/zh-CN/2025/10/cisp/
  • /2025/10/cisp/ (English redirect) → canonical: https://neo01.com/zh-CN/2025/10/cisp/
  • /zh-TW/2025/10/cisp/ (redirect) → canonical: https://neo01.com/zh-CN/2025/10/cisp/

Hreflang Tags (added to all pages):

<link rel="canonical" href="https://neo01.com/2025/10/article" />
<link rel="alternate" hreflang="en" data-canonical="true" href="https://neo01.com/2025/10/article" />
<link rel="alternate" hreflang="zh-TW" href="https://neo01.com/zh-TW/2025/10/article" />
<link rel="alternate" hreflang="zh-CN" href="https://neo01.com/zh-CN/2025/10/article" />
<link rel="alternate" hreflang="ja" href="https://neo01.com/ja/2025/10/article" />

Testing

npm test

License

MIT