This is a vi-inspired terminal chat client that plans to support the following protocols:
- Jabber (not yet implemented)
- Matrix (in progress)
- Mattermost (in progress)
Note that this project is still very much in its early stages and a lot is subject to eventually change.
For now, you can try it out by creating a mm-account.json
file in the repo
that looks like:
{
"protocol": "mattermost",
"url": "<mattermost url>",
"auth": {
"team": "<your team name>",
"username": "<your username>",
"password": "<your password>"
}
}
And then running:
$ ./bin/iamb
You can use :dm <username>
to start a conversation with another user.
Install node.js, then:
npm install -g iamb
MPL-v2