nodejieba - "结巴"分词的Node.js版本
MIT
跨平台
JavaScript
软件简介
NodeJieba “结巴”分词的Node.js版本
NodeJieba只是CppJieba简单包装而成的node扩展,用来进行中文分词。
npm install nodejieba
因为npm速度很慢而且经常因为墙的原因出现莫名其妙的问题,在此强烈建议使用cnpm,命令如下:
npm --registry=http://r.cnpmjs.org install nodejieba
Usage
var segment = require("nodejieba");
segment.loadDict("./node_modules/nodejieba/dict/jieba.dict.utf8", "./node_modules/nodejieba/dict/hmm_model.utf8");
var wordList = segment.cutSync("阻塞模式分词"); if (wordList.constructor == Array) // just for tutorial, this is always be true {
wordList.forEach(function(word) { console.log(word);
});
}
segment.cut("非阻塞模式分词", function(wordList) {
wordList.forEach(function(word) { console.log(word);
});
});
var segment = require("nodejieba");
segment.queryLoadDict("./node_modules/nodejieba/dict/jieba.dict.utf8", "./node_modules/nodejieba/dict/hmm_model.utf8");
var wordList = segment.queryCutSync("阻塞模式分词"); if (wordList.constructor == Array) // just for tutorial, this is always be true {
wordList.forEach(function(word) { console.log(word);
});
}
segment.queryCut("非阻塞模式分词", function(wordList) {
wordList.forEach(function(word) { console.log(word);
});
});
具体用法可以参考 test/segment.js test/query_segment.js
在node v0.10.2下测试通过
Demo
http://cppjieba-webdemo.herokuapp.com/ (chrome is suggested)