Skip to content

hexenq/kuroshiro-analyzer-kuromoji

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
lib
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

kuroshiro-analyzer-kuromoji

Build Status Coverage Status npm version

Package kuroshiro-analyzer-kuromoji
Description Kuromoji morphological analyzer for kuroshiro.
Compatibility Node ✓ (>=6)
Browser

Install

$ npm install kuroshiro-analyzer-kuromoji

For legacy frontend workflows, you could include dist/kuroshiro-analyzer-kuromoji.min.js in your page and the exported name is KuromojiAnalyzer. (you may first build it from source with npm run build after npm install)

Usage with kuroshiro

Configure analyzer

This analyzer utilizes kuromoji.js.

You could specify the path of your dictionary files with dictPath param.

import KuromojiAnalyzer from "kuroshiro-analyzer-kuromoji";

const analyzer = new KuromojiAnalyzer();

await kuroshiro.init(analyzer);

Initialization Parameters

Example:

const analyzer = new KuromojiAnalyzer({
    dictPath: "url/to/dictionary_files"
});
  • dictPath: Optional Path of the dictionary files