An open API service indexing awesome lists of open source software.

https://github.com/zaubernerd/jabbastic

Jabbastic (made up from jabber and bombastic) is a tool which checks a given website every X minutes if condition Y is satisfied. If so, it notifies it's subscribers via jabber.
https://github.com/zaubernerd/jabbastic

Last synced: 2 months ago
JSON representation

Jabbastic (made up from jabber and bombastic) is a tool which checks a given website every X minutes if condition Y is satisfied. If so, it notifies it's subscribers via jabber.

Awesome Lists containing this project

README

        

jabbastic
=========

Jabbastic (made up from jabber and bombastic) is a tool which checks a given website every X minutes if condition Y is satisfied. If so, it notifies it's subscribers via jabber.

#Configuration
You need to put a config.json file inside the main directory with the following content:

```JSON
{
"jabber": {
"jid": "[email protected]",
"password": "xxx",
"host": "talk.google.com",
"port": 5222
}
}
```

#Installation
1. `git clone https://github.com/ZauberNerd/jabbastic.git`
2. cd into the directory you cloned into.
3. `npm install` to install all the dependencies.
4. create the config.json file with the credentials for the jabber/xmpp login.
5. create an empty subscriptions.json file.
6. `node index.js` (or use a supervisor script, like node-supervisor or node-forever).

Be aware that this is in it's early stages and might not work as expected.
If you find any bugs, please either file an issue or fix them and send me a pull request ;)