https://github.com/node-ci/nci-jabber-notification
Jabber notification plugin for nci(https://github.com/node-ci/nci)
https://github.com/node-ci/nci-jabber-notification
Last synced: 3 months ago
JSON representation
Jabber notification plugin for nci(https://github.com/node-ci/nci)
- Host: GitHub
- URL: https://github.com/node-ci/nci-jabber-notification
- Owner: node-ci
- License: mit
- Created: 2015-08-14T20:57:35.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-09-07T14:40:57.000Z (over 8 years ago)
- Last Synced: 2024-10-17T06:55:13.012Z (over 1 year ago)
- Language: JavaScript
- Size: 10.7 KB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nci jabber notification
Jabber notification plugin for [nci](https://github.com/node-ci/nci).
## Installation
```sh
npm install nci-jabber-notification
```
## Usage
To enable add this plugin to the `plugins` section at server config, set
parameters for jabber account at `notify.jabber` e.g. for google talk:
```json
{
"plugins": [
"nci-jabber-notification"
],
"notify": {
"jabber": {
"host": "talk.google.com",
"port": 5222,
"reconnect": true,
"jid": "bot.nci@gmail.com",
"password": "yourpassword"
}
}
....
}
```
after that you can set jabber notification at project config e.g.
```json
"notify": {
"on": [
"change"
],
"to": {
"jabber": [
"oleg.korobenko@gmail.com"
]
}
},
```