Socket
Book a DemoInstallSign in
Socket

bug-me

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bug-me

get a bug to look at based on what you're interested in

latest
Source
npmnpm
Version
1.0.3
Version published
Maintainers
1
Created
Source

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

Keywords

nodebugme

FAQs

Package last updated on 18 Dec 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts