randylien / node-hipchat

Nodejs push log to hipchat room

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

node-hipchat

Nodejs push log to hipchat room

how to use

  • setup your api token and room number
// open config file (config.js)
module.exports = {
    token: 'YOUR_TOKEN',
    roomId: 'YOUR_ROOM_ID'
}
  • use it
var hipchat = require('./node-hipchat/index');

// log warn
hipchat.logger('Hello hipchat logger - warn', 'warn');

// log error
hipchat.logger('Hello hipchat logger - error', 'error');

About

Nodejs push log to hipchat room