bug-me
v1.0.3
Published
get a bug to look at based on what you're interested in
Downloads
7
Readme
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