Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 712 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 712 Bytes

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: こんにちは