GithubHelp home page GithubHelp logo

from-the-river-to-the-sea / barry-donations Goto Github PK

View Code? Open in Web Editor NEW
6.0 0.0 3.0 53 KB

Evented API wrapper for Barry's Donation Tracker

Home Page: http://don.barrycarlyon.co.uk/

JavaScript 100.00%

barry-donations's Introduction

barry-donations

An evented API wrapper for Barry's Donation Tracker, a service that makes tracking donations easier for Twitch broadcasters.

Build Status

Installation

npm install barry-donations

Example Usage

var BarryDonations = require('barry-donations');

// New donations will be received via a REST endpoint
// barry-donations takes care of making and listening to the endpoint, but you must supply the hostname
var bd = new BarryDonations({
    username: 'user',
    password: 'pass',
    hostname: 'yourserver.com', // don't add "http://" prefix. https currently unsupported
    port: 1234,                 // optional, will use a random port if not supplied
    reconnect: true             // optional, attempt to automatically reconnect when disconnected. defaults to true.
});

bd.on('connected', function () {
    console.log('connected');
});

bd.on('connectfail', function (e) {
    console.error(e);
});

bd.on('error', function (e) {
    console.error(e);
});

bd.on('disconnected', function (e) {
    console.error(e);
});

bd.on('reconnecting', function (timerDuration) {
    console.log('reconnecting in %d seconds', timerDuration);
});

bd.on('initialized', function (data) {
    console.log("[init]" + data);
});

bd.on('newdonations', function (data) {
    console.log("[newdonations] " + data);
});

Contributing

  1. Fork it ( http://github.com/langeh/barry-donations/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

License

barry-donations is provided under the MIT license, which is available to read in the [LICENSE][] file.

Credits

Barry Carlyon, developer of Barry's Donation Tracker

barry-donations's People

Contributors

abrahamic-god avatar barrycarlyon avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

barry-donations's Issues

Cache connections

If two modules both use barry-donations and both attempt to connect to the same account, barry-donations shouldn't create another API session and waste bandwidth. It should instead return the same barry-donations object.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.