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.
- Host: GitHub
- URL: https://github.com/zaubernerd/jabbastic
- Owner: ZauberNerd
- Created: 2012-11-20T11:17:36.000Z (over 12 years ago)
- Default Branch: jsdom
- Last Pushed: 2012-11-27T15:58:38.000Z (over 12 years ago)
- Last Synced: 2025-02-23T17:44:32.163Z (4 months ago)
- Language: JavaScript
- Size: 196 KB
- Stars: 8
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 ;)