Name
botkit-matrix
Description
A Botkit connector for Matrix
Author
frankgerhardt
Maturity
No longer maintained
Language
JavaScript
License
Apache-2.0
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