hipchat-msg
v0.1.1
Published
HipChat message sender
Downloads
16
Readme
hipchat-msg
HipChat notifications (API v2)
Usage
const HipChatNotifier = require('hipchat-msg').HipChatNotifier;
const { AUTH_TOKEN, ROOM_ID } = process.env;
const client = new HipChatNotifier({
room: ROOM_ID,
auth_token: AUTH_TOKEN,
});
client.message('Hello room!', {
color: 'green',
});