bug-me

1.0.3 • Public • Published

bug-me

A package exposing the data from nodebug.me. Contains both a CLI and require-able module.

$ bug-me
usage: bug-me [<options>]
 
    -h, -?, --help        show this help
    -r, --reproducible    show issues with reproduction steps
    -c, --consensus       show issues that have consensus on a solution
    -d, --duplicates      show issues that have duplicates
    -w, --wrong-repo      show issues that are in the wrong repo
    -f, --is-feature      show issues that have been approved as features
                          by a core team member
    -v, --version <ver>   show issues that have been reproduced 
                          against version <ver>, with acceptable values
                          of "0.10" or "0.11"
$ bug-me -c -f
# ... all issues that have consensus or are features ... 

Or from Node:

var concat = require('concat-stream');
var bugs = require('bug-me');
 
bugs().pipe(concat(function(bugReports) {
  bugReports.length
}))

API

bugs() → Readable Stream<BugReport>

Bugs will return an objectMode readable stream of bug report objects, suitable for piping to an objectMode writable stream.

BugReport

An object tallying the results of bug reports for a given github issue. Detailed here.

License

MIT

Dependencies (6)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i bug-me

    Weekly Downloads

    1

    Version

    1.0.3

    License

    MIT

    Last publish

    Collaborators

    • chrisdickinson