1.0.1 • Published 8 years ago

twitchbots-node v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

twitchbots-node

Build Status codecov Dependency Status

Ready to use node.js module for the twitchbots.info API.

Instalation

To add this module to your node project just run npm install --save twitchbots-node.

Usage

var twitchbots = require("twitchbots-node");

twitchbots.getBot("moobot").then(function(bot) {
    if(bot.isBot)
        console.log(bot.username, "is a bot");
    else
        console.log(bot.username, "is not a bot");
});

See twitchbots-base for a documentation of all methods available on the twitchbots object.

License

This module is licensed under the MIT license.