2.1.0 • Published 9 years ago

njabbr v2.1.0

Weekly downloads
6
License
-
Repository
github
Last release
9 years ago

njabbr

A nodejs Jabbr client

Install

npm install njabbr

Usage

var JabbrClient = require('njabbr').JabbrClient;
var JabbrClientEvents = require('njabbr').JabbrClientEvents;

var client = new JabbrClient("http://jabbr.url/");

client.on(JabbrClientEvents.onMessageReceived, function(msg, room) {
});

client.connect("username", "password", function(task) {
    console.log("You are now logged in");

    client.joinRoom("SomeTestRoom", function() {

        console.log("You have joined SomeTestRoom");        

        // speak robot speak!
        client.say("Hey everyone!", "SomeTestRoom");

    });

    // logoff after 10 seconds
    setTimeout(function() {
        client.disconnect();
    }, 10000);

});
2.1.0

9 years ago

2.0.0

11 years ago

1.2.2

11 years ago

1.2.1

11 years ago

1.2.0

11 years ago

1.1.0

11 years ago

1.0.0

11 years ago

0.3.0

12 years ago

0.2.2

12 years ago

0.2.1

12 years ago

0.2.0

12 years ago

0.1.0

12 years ago