2.1.0 • Published 1 year ago

dubapi v2.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
1 year ago

DubAPI

About

A Node.js API for creating queup.net bots.

Installation

npm install dubapi

Optionally, the websocket implementation can make use of native addons for performance and spec compliance.

npm install --save-optional bufferutil utf-8-validate

Usage

var DubAPI = require('dubapi');

new DubAPI({username: '', password: ''}, function(err, bot) {
    if (err) return console.error(err);

    console.log('Running DubAPI v' + bot.version);

    function connect() {bot.connect('friendship-is-magic');}

    bot.on('connected', function(name) {
        console.log('Connected to ' + name);
    });

    bot.on('disconnected', function(name) {
        console.log('Disconnected from ' + name);

        setTimeout(connect, 15000);
    });

    bot.on('error', function(err) {
        console.error(err);
    });

    bot.on(bot.events.chatMessage, function(data) {
        console.log(data.user.username + ': ' + data.message);
    });

    connect();
});

Credit

2.1.0

1 year ago

2.0.0

4 years ago

1.6.9

7 years ago

1.6.8

8 years ago

1.6.7

8 years ago

1.6.6

9 years ago

1.6.5

9 years ago

1.6.4

9 years ago

1.6.3

9 years ago

1.6.2

9 years ago

1.6.1

9 years ago

1.6.0

9 years ago

1.5.1

9 years ago

1.5.0

10 years ago

1.4.0

10 years ago

1.3.0

10 years ago

1.2.1

10 years ago

1.2.0

10 years ago

1.1.0

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago