5.1.5 • Published 5 years ago

@lukekarrys/entry-watcher v5.1.5

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

entry-watcher

Entry watcher for bracket.club.

Build Status Greenkeeper badge

Usage

const EntryWatcher = require('entry-watcher');
new EntryWatcher({
  logger: null,
  sport: 'ncaam',
  year: '2015',
  domain: 'bracket.club',
  tags: ['bracketclub'],
  type: 'tweet',
  auth: {
    // Passed to twitter streaming listener
    // Could be extended in the future based on `options.type`
    'consumer_key': '',
    'consumer_secret': '',
    'access_token': '',
    'access_token_secre': ''
  }
  onSave: function (entry) {
    // Entry is the full entry passsed back
    // plus the `bracket` value
  },
  onError: function () {
    // Can be used to plug in to when there are entries
    // that dont meet the validation such as not having a valid
    // bracket or being outside the time limit
  }
}).start();

Checking a Specific Tweet

new EntryWatcher({
  // All the same options as above
}).find(TWEET_ID)

What is it doing?

It is setting up a Twitter listener using twit and when a tweet is found, it is checking whether it contains a valid bracket. If it does, it will call the onSave handler.

Is it on npm?

Yeah, now that there are publically scoped modules it's at npm install @lukekarrys/entry-watcher.

LICENSE

MIT

5.1.5

5 years ago

5.1.4

5 years ago

5.1.3

6 years ago

5.1.2

6 years ago

5.1.1

6 years ago

5.1.0

6 years ago

5.0.6

7 years ago

5.0.5

7 years ago

5.0.4

8 years ago

5.0.3

8 years ago

5.0.2

8 years ago

5.0.1

8 years ago

5.0.0

8 years ago

4.0.2

8 years ago

4.0.1

8 years ago