gbf-raidfinder
TypeScript icon, indicating that this package has built-in type declarations

2.0.2 • Public • Published

Build Status codecov npm version

Granblue Raidfinder

Installation

npm install gbf-raidfinder

Usage

const Raidfinder = require('gbf-raidfinder');
 
// Using provided Twitter credentials
let client = new Raidfinder({
  access_token_key: '<ACCESS_TOKEN>',
  access_token_secret: '<ACCESS_TOKEN_SECRET>',
  consumer_key: '<CONSUMER_KEY>',
  consumer_secret: '<CONSUMER_SECRET>'
});
 
// Using environment variables
// Load env using dotenv package
require('dotenv').config();
client = new Raidfinder({
  access_token_key: process.env.ACCESS_TOKEN,
  access_token_secret: process.env.ACCESS_TOKEN_SECRET,
  consumer_key: process.env.CONSUMER_KEY,
  consumer_secret: process.env.CONSUMER_SECRET
});
 
// ...or using the shorthand (internally load credentials from env)
client = new Raidfinder();
 
const tweetHandler = (err, tweet, stream) => {
  if (err) {
    throw new Error(err);
  }
 
  console.dir(tweet);
  /* Outputs: RaidTweet {
          text: '5869AA6C :参戦ID\n参加者募集!\nLv75 シュヴァリエ・マグナ\nhttps://t.co/1sORKFyv91',
          image: 'https://t.co/1sORKFyv91',
          boss:
          Boss {
            text: 'Lv75 シュヴァリエ・マグナ',
            language: 'jp',
            level: 75,
            name: 'シュヴァリエ・マグナ' },
          language: 'jp',
          raid: Raid { text: '5869AA6C :参戦ID', code: '5869AA6C', message: '' } } */
  // Destroy stream when a tweet is received
  stream.destroy();
};
 
// Track a single raid boss (Japanese tweet only)
let $stream = client.stream('Lv75 シュヴァリエ・マグナ', tweetHandler);
 
// Destroy previous stream
$stream.destroy();
// Track multiple raid bosses (Japanese & English tweets)
client.stream(
  [
    'Lvl 75 Luminiera Omega',
    'Lv75 シュヴァリエ・マグナ',
    'Lvl 75 Celeste Omega',
    'Lv75 セレスト・マグナ'
  ],
  tweetHandler
);

License

MIT

Package Sidebar

Install

npm i gbf-raidfinder

Weekly Downloads

3

Version

2.0.2

License

MIT

Unpacked Size

193 kB

Total Files

42

Last publish

Collaborators

  • frizz925