Package Exports
- list-github-repos
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (list-github-repos) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
list-github-repos
Get meta-data of all repositories by a specific organisation as a pull-stream
Usage
var pull = require('pull-stream');
var repoStream = require('list-github-repos')('YOUR-GITHUB-USERNAME');
pull(
repoStream('mozilla'),
pull.map(function(r) {return r.name;})
pull.log()
);
// => outputs the names of all github repos by the mozilla organisation
Your github username is used as the User-Agent (as per github spec). See Dominic Tarr's pull-stream for more details about pull-streams.
License
MIT