A Botkit connector for Matrix
$ npm install botkit-matrix
let config = {
'baseUrl': 'https://matrix.org',
'botUserId': '@youruserid:matrix.org',
'password': 'yourpassword',
'localStorage': 'filepath'
};
require('botkit-matrix').MatrixController(config)
.then((controller) => {
controller.hears(['hi', 'hello'], 'message_received', function (bot, message) {
bot.reply(message, "Hello, world!");
});
});
You can get a sample bot at botkit-matrix-sample
For more features see Botkit Core
- Frank Gerhardt - management - frankgerhardt
- Nándor Póka - management - nandor-poka
- Dániel Sabic - development - SabicDaniel
- Sándor Lukács - development - lukacssandor
This project is licensed under Apache License 2.0 - see the LICENSE.md for details