git-browse-github-search
This is sub-module for git-browse.
Install
$ npm install -g git-browse-github-search
$ npm install git-browse-github-search
Usage
as CLI tool
$ git-browse-github-search foo example-
example-a example-b example-c
In this case, the user 'foo' has 3 repositories on Github, example-a, example-b, example-c
as required module
var search = require('git-browse-github-search').search
search({
user: 'username',
repo: 'repo search words, foward-matching',
success: (reponames) => {
// reponames is array of user's repositoy name
}
})
Releases
0.0.6
- Added cache
0.0.5
- Added Release note
0.0.4
- changed interfaces
0.0.1
- Initiated