惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Last Week in AI
Last Week in AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
雷峰网
雷峰网
IT之家
IT之家
I
InfoQ
酷 壳 – CoolShell
酷 壳 – CoolShell
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
B
Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 【当耐特】
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
Hugging Face - Blog
Hugging Face - Blog
A
About on SuperTechFans
月光博客
月光博客
P
Proofpoint News Feed
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
G
Google Developers Blog
小众软件
小众软件
宝玉的分享
宝玉的分享
Jina AI
Jina AI
V
Visual Studio Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Auto-Furigana in the Browser — Lazy-Loading kuromoji.js's...
SEN LLC · 2026-05-07 · via DEV Community

Furigana are the small hiragana annotations that sit above kanji to show how they should be read. Schoolbooks, kid manga, and language-learning material all rely on them. The problem: typing them by hand is slow, and most online services that auto-annotate require sending your text to a server you don't control. This is a tool that does it entirely in the browser, by lazy-loading the 4 MB kuromoji.js dictionary from a CDN — about 350 lines including tests.

kanji-yomi UI: dark theme. The textarea contains the opening line of Natsume Sōseki's annotations: each kanji has its hiragana reading rendered above it in a teal accent colour ("吾輩" → "わがはい", "猫" → "ねこ", "名前" → "なまえ", etc.). A status bar at the bottom shows "tokens 42 / annotated 12 / kanji chars 17 / coverage 100% / dict load 1.98s"."/>

🌐 Demo: https://sen.ltd/portfolio/kanji-yomi/
📦 GitHub: https://github.com/sen-ltd/kanji-yomi

What it does

You paste Japanese text into a textarea. Each kanji-bearing word gets wrapped in <ruby>...<rt>reading</rt></ruby>, which browsers render with the hiragana reading floating above the kanji. No server is involved. The dictionary lives on jsDelivr's CDN and the tokenizer runs in the page.

The morphological analyzer is kuromoji.js, a JavaScript port of MeCab + the IPA dictionary. The dictionary is 12 .dat.gz files totalling about 4 MB; kuromoji.builder({ dicPath }).build(...) fetches them in sequence. First load is 1–3 seconds; subsequent loads come from the browser cache and are basically instant.

Separating the pure logic from kuromoji

kuromoji.js can't load under node --test — it expects an XHR-able dictionary path, and pulling 4 MB of dict files for unit tests is overkill anyway. The fix is to make sure all the logic that operates on tokens lives in a DOM-free module that can take synthetic tokens.

// yomi.js — DOM-free, kuromoji-free
const KANJI_RE = /[一-鿿㐀-䶿豈-﫿]/;

export function hasKanji(s) {
  return KANJI_RE.test(s);
}

// kuromoji emits readings in fullwidth katakana. Convert to hiragana
// for ruby display by shifting U+30A1..U+30F6 down by 0x60. Long-vowel
// mark ー (U+30FC) sits outside that range and is preserved as-is —
// so "コーヒー" becomes "こーひー", which is what readers expect.
export function katakanaToHiragana(s) {
  return s.replace(/[ァ-ヶ]/g, (ch) =>
    String.fromCharCode(ch.charCodeAt(0) - 0x60),
  );
}

export function shouldRuby(token) {
  if (!token || !token.reading || token.reading === "*") return false;
  if (!hasKanji(token.surface_form)) return false;
  const hiraReading = katakanaToHiragana(token.reading);
  return hiraReading !== token.surface_form;
}

export function renderToken(token) {
  if (token.surface_form === "\n") return "<br>";
  if (shouldRuby(token)) {
    const reading = katakanaToHiragana(token.reading);
    return `<ruby>${escapeHtml(token.surface_form)}<rt>${escapeHtml(reading)}</rt></ruby>`;
  }
  return escapeHtml(token.surface_form);
}

Enter fullscreen mode Exit fullscreen mode

shouldRuby is the small predicate that decides whether a token is worth annotating. It returns false in three cases:

  1. Reading is * or missing. kuromoji's "I don't know this word" sentinel. Proper nouns, latin words, emoji.
  2. No kanji in the surface form. Annotating a hiragana word like "ねこ" with the reading "ねこ" is just visual noise.
  3. Reading equals surface form. Sometimes kuromoji falls back to setting the reading to the surface itself for OOV tokens. The annotation would be redundant; skip it.

This is the kind of small predicate that gets refactored later and silently breaks because nobody notices the boundary cases. The 19 unit tests pin all three.

The katakana-to-hiragana shift, with one footgun

The conversion is a single Unicode-codepoint shift: U+30A1–U+30F6 (フルwidth katakana) → U+3041–U+3096 (hiragana). Subtract 0x60 from each codepoint.

"カタカナ"  "かたかな"   // each char shifted by -0x60
"トウキョウ"  "とうきょう"

Enter fullscreen mode Exit fullscreen mode

The footgun is which characters you don't want to convert:

  • Long-vowel mark ー (U+30FC) is outside the range and stays. "コーヒー" becomes "こーひー", not "こうひい" — because users see the same long bar they'd write themselves.
  • ヴ (U+30F4) is in range and shifts to ゔ (U+3094) — small kana for /v/, occasionally used in loanwords.
  • ヵ (U+30F5), ヶ (U+30F6) are in range and shift to ゕ, ゖ — used in counters like 一ヶ月.

The class regex [ァ-ヶ] covers exactly the right range. [ァ-ヴ] would miss ヵ and ヶ; [ア-ン] would miss the small kana.

Why I lazy-load the dictionary instead of bundling it

The dictionary is 4 MB. I could bundle it with the deploy and have everything come from the same origin, but the CDN approach won out for two reasons:

  • The deploy is small. I'm shipping ~100 portfolio entries from the same CloudFront distribution; each one being 4 MB heavier blows up sync time and bucket size for no reason.
  • The cache is shared. If you visit any other site that uses kuromoji@0.1.2 from jsDelivr, your browser already has the dictionary. I get to free-ride on whatever cache hit rate jsDelivr earned.

The trade-off is "if jsDelivr is down, the tool is broken." That's a small probability and the failure mode is loud — the page shows a red status message, not a silent hang:

kuromoji.builder({ dicPath: KUROMOJI_DICT_PATH }).build((err, t) => {
  if (err) {
    setStatus("error", "Dictionary load failed", ` — ${err.message ?? err}`);
    return;
  }
  tokenizer = t;
  buildDurationMs = performance.now() - buildStartedAt;
  setStatus("ready", "Dictionary loaded", ` (${(buildDurationMs / 1000).toFixed(2)}s)`);
  renderInput();
});

Enter fullscreen mode Exit fullscreen mode

I show the load time in the status bar ((1.98s) etc.) so the cache effect is visible: reload the page and it drops to roughly nothing.

Coverage as a feedback signal

The status row at the bottom of the page reads tokens 42 / annotated 12 / kanji chars 17 / coverage 100% / dict load 1.98s. The fields:

  • tokens — count of segments kuromoji produced. Includes punctuation, particles, newlines.
  • annotated — number of tokens that received ruby (passed shouldRuby).
  • kanji chars — number of characters in the input that match the kanji regex.
  • coverage — kanji characters in tokens-with-readings divided by all kanji characters.

When coverage is below 100%, it's almost always one of:

  • Proper nouns (person/place names) absent from the IPA dictionary. Modern surnames, recent place names, and brand names are common offenders.
  • OCR'd text with character recognition errors.
  • Coined words or weird stylistic forms.

The unannotated kanji render as plain text in the same flow, so a reader can spot exactly which words the dictionary missed and patch them by hand. For textbook-prep workflows, that's the right level of feedback — auto-annotation handles the bulk and the human cleans the tail.

Side-effects you can use

The token data kuromoji emits has more in it than just readings:

  • Part-of-speech tagspos, pos_detail_1 give you "noun" / "verb" / "particle" / etc. Not used here, but a "highlight all the verbs in red" mode is a few lines away.
  • Base formbasic_form normalises conjugations, so "歩いた" (walked) reduces to "歩く" (to walk). Useful for search indexing.
  • Pronunciation vs reading — kuromoji emits both reading and pronunciation; the latter applies the actual sound shifts (e.g. mora geminations) used in TTS pipelines.

So this is less a "ruby annotator" and more a "browser-side morphological analyser with a ruby-rendering UI."

What I deliberately didn't do

  • Disambiguating heteronyms. "行った" can read as "いった" (went) or "おこなった" (carried out). kuromoji returns the dictionary's most-frequent reading without considering context. A real solution would offer the user a choice for ambiguous tokens — that needs a UI that's substantially more than this entry's scope.
  • Marking unannotated kanji. I should visually flag the kanji where coverage failed (e.g. a faint underline) so the user can find them quickly. Not done; the workaround is to read carefully.
  • Image OCR input. Combined with Tesseract.js this would give you "photo → annotated HTML" in one tool. That's a separate entry.

Tests

$ npm test
✔ hasKanji recognises CJK ideographs
✔ hasKanji catches Extension A and Compatibility blocks
✔ katakanaToHiragana shifts U+30A1–U+30F6 by 0x60
✔ katakanaToHiragana preserves chōonpu and punctuation
✔ shouldRuby keeps kanji tokens with a real reading
✔ shouldRuby skips hiragana-only tokens
✔ shouldRuby skips katakana-only tokens
✔ shouldRuby skips when reading is missing or unknown
✔ shouldRuby skips when reading equals surface (would be redundant)
✔ renderToken wraps a kanji token in <ruby><rt>...</rt></ruby>
✔ renderToken converts newline tokens to <br>
✔ renderToken HTML-escapes surface and reading
✔ renderTokens preserves order and concatenates results
✔ stripRuby removes <rt> annotations and <ruby> wrappers
✔ countAnnotations matches what renderTokens would mark
✔ countKanjiChars counts CJK ideographs only
ℹ tests 19  ℹ pass 19  ℹ fail 0

Enter fullscreen mode Exit fullscreen mode

The tests don't load kuromoji. They cover only the responsibilities of yomi.js — the layer that has to keep working even if kuromoji starts emitting weirder tokens than it does today.

Try it

The demo at https://sen.ltd/portfolio/kanji-yomi/ ships with four sample buttons (the openings of I Am a Cat, Run, Melos, Snow Country, and Night on the Galactic Railroad) so you can click and see the annotator working without typing. Or paste your own text — first load is a couple of seconds while the dictionary streams in, after that everything is instant.

Source: https://github.com/sen-ltd/kanji-yomi — MIT, ~350 lines total, 19 unit tests, no build step. Open yomi.js first; it's the part that's unit-tested and the part you'd reuse.


🛠 Built by SEN LLC as part of an ongoing series of small, focused developer tools. Browse the full portfolio for more.