Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 days 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 (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-02T00:45:18.000Z (over 8 years ago)
- Last Synced: 2024-12-18T03:47:23.932Z (about 1 month ago)
- Language: JavaScript
- Size: 31.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# git-browse-github-search
[![npm version](https://badge.fury.io/js/git-browse-github-search.svg)](https://badge.fury.io/js/git-browse-github-search)
[![Build Status](https://travis-ci.org/KamataRyo/git-browse-github-search.svg?branch=master)](https://travis-ci.org/KamataRyo/git-browse-github-search)
[![codecov](https://codecov.io/gh/KamataRyo/git-browse-github-search/branch/master/graph/badge.svg)](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