1.0.1 • Published 5 years ago

botkit-matrix v1.0.1

Weekly downloads
3
License
Apache-2.0
Repository
github
Last release
5 years ago

botkit-matrix

A Botkit connector for Matrix

Install

$ npm install botkit-matrix

Usage

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

Authors

License

This project is licensed under Apache License 2.0 - see the LICENSE.md for details