https://github.com/kamataryo/git-browse-github-search
This is sub-module for git-browse
https://github.com/kamataryo/git-browse-github-search
Last synced: 4 months ago
JSON representation
This is sub-module for git-browse
- Host: GitHub
- URL: https://github.com/kamataryo/git-browse-github-search
- Owner: kamataryo
- License: mit
- Created: 2016-09-24T01:31:15.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-10-02T00:45:18.000Z (almost 9 years ago)
- Last Synced: 2025-03-08T09:32:20.203Z (4 months ago)
- Language: JavaScript
- Size: 31.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# git-browse-github-search
[](https://badge.fury.io/js/git-browse-github-search)
[](https://travis-ci.org/KamataRyo/git-browse-github-search)
[](https://codecov.io/gh/KamataRyo/git-browse-github-search)This is sub-module for [git-browse](https://npmjs.com/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