Hubot:模块化脚本

时间:2015-10-23 09:59:34

标签: coffeescript hubot

我想为我的hubot实例构建一个模块化脚本系统。

例如:我的同事可以编写应该​​遵循某种模式的模块。

在我要导出的这些模块中,让我们说一个json对象,它应该由我的中心" hub"自动拾取。脚本。

像这样:

  • node_modules / work-hub.coffee
  • node_modules / work-testcommand.coffee
  • node_modules / work-weather.coffee

在testcommand和天气脚本中,我想以某种方式导出这种json:

{
  "command": "!test"
  "help": "Help for the test command"
}

在hub命令中我想拾取那些json对象,所以每当有人写'&34;!test"它应该调用testcommand.coffee的特定函数并作出响应。

致电"!help test"它应该用help命令回复。

这有可能吗?

提前致谢!

儒略

0 个答案:

没有答案