stemming-x-keywords
v1.0.4
Published
get stemming unknown keywords by using kuromoji.js(ja)
Downloads
66
Readme
stemming-x-keywords
Get stemming unknown keywords.
kuromoji.jsを使い形態素解析された単語から、 未知の単語をキーワードとして抽出します。
目的
短い技術文章からキーワードらしいものを抽出する目的で実装されています。
技術用語など専門分野の単語は辞書にはないため、word_type: UNKNOWN
となることを利用してそれをキーワードとして取り出します。
Installation
npm install stemming-x-keywords
Usage
import {getKeywords} from "gstemming-x-keywords";
let text = `ESLintのルールを拡張する仕組みについて解説しています。
ESLintではJavaScriptのコードをパースして作成されたASTを元にコードのLintを行います。
実際にESLintのルールを解釈できる小さな実装を作りながらプラグインの仕組みについて学びます。`;
getKeywords(text).then(keywords => {
console.log(keywords);
// [ 'ESLint', 'JavaScript', 'AST', 'Lint', 'プラグインアーキテクチャ' ]
});
Tests
npm test
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
License
MIT