npm install pullword
var defaultOptions = { url: 'http://api.pullword.com/post.php', /* api url */ threshold: 0.5, /* must be [0-1] */ debug: 0, /* debug=1, debug mode in on(show all probabilities of each word) */ array: 1 /* array=0, return raw-string */ }; var api = require('pullword')(defaultOptions); api.pullword('老闆來碗牛肉麪,不要香菜。', function (err, result) { console.log(result); }); // ['老闆', '牛肉', '牛肉麪', '不要', '香菜']