Skip to content

Instantly share code, notes, and snippets.

@dafujii
Created November 27, 2019 12:42
Show Gist options
  • Save dafujii/13237cbfe0688c78110ccef6efa1678d to your computer and use it in GitHub Desktop.
Save dafujii/13237cbfe0688c78110ccef6efa1678d to your computer and use it in GitHub Desktop.
import * as kuromoji from "kuromoji";
const builder = kuromoji.builder({
dicPath: "node_modules/kuromoji/dict"
});
builder.build((err, tokenizer) => {
if (err) {
throw err;
}
console.dir(tokenizer.tokenize("筋肉ほめて"));
console.dir(tokenizer.tokenize("筋肉 ほめて"));
console.dir(tokenizer.tokenize("筋肉マニア"));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment