Detalhes do pacote

hubot-middleware-kuromoji

hoto17296108MIT0.2.1

A hubot middleware for kuromoji.js

hubot, hubot-scripts, hubot-middleware, kuromoji

readme (leia-me)

hubot-middleware-kuromoji

Build Status

Tokenize all the messages that Hubot have received by kuromoji.js

Install

npm install hubot-middleware-kuromoji

Add "hubot-middleware-kuromoji" to your external-scripts.json

Usage

You can use tokenized sentence from msg.message.tokenized

module.exports = (robot) ->

  robot.hear /.*/, (msg) ->
    msg.message.tokenized.map (token) ->
      if token.pos == '感動詞'
        msg.reply token.surface_form
hubot> こんにちは
Shell: こんにちは