Skip to content

Instantly share code, notes, and snippets.

@ybenjo
Created April 24, 2015 02:50
Show Gist options
  • Save ybenjo/473c3fc270c99c2dc5f2 to your computer and use it in GitHub Desktop.
Save ybenjo/473c3fc270c99c2dc5f2 to your computer and use it in GitHub Desktop.
module.exports = (robot) ->
robot.hear /mecab (.*)/i, (msg) ->
text = msg.match[1]
MeCab = new require 'mecab-async'
mecab = new MeCab()
ret = mecab.parseSync(text)
msg.send text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment