Skip to content

oliviert/nobot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nobot

A chat bot for HipChat that provides basic functionalities and plugin support.

Install plugins through npm or put them into a folder 'plugins' in the directory of your script.

Installation

$ npm install nobot

Example

var nobot = require('nobot');
var bot = new nobot({
  jid: '123456@chat.hipchat.com',
  password: 'hunter2',
  plugins: ['nobot-pugme']
});

bot.connect();

About

Nobot is based on Christian Joudrey's wobot.