https://github.com/niradler/github-kit-cli
github sdk wrapper to run as cli.
https://github.com/niradler/github-kit-cli
cli github
Last synced: about 1 month ago
JSON representation
github sdk wrapper to run as cli.
- Host: GitHub
- URL: https://github.com/niradler/github-kit-cli
- Owner: niradler
- Created: 2020-01-19T22:53:22.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-10T17:47:04.000Z (over 3 years ago)
- Last Synced: 2025-09-30T09:24:18.426Z (9 months ago)
- Topics: cli, github
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/github-kit-cli
- Size: 67.4 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# github-kit-cli
github sdk wrapper to run as cli, to get more details on params and options go to [octokit](https://octokit.github.io/rest.js)
## Usage
### Basic
```
gkc --help
```
```
gkc store -a="github-api-key"
```
```
gkc search repos -p="q=org:niradler"
```
```
gkc any search repos -p="q=org:niradler"
```
### Advance
```
gkc repos listForUser --params="username=niradler" --map="name" --filter="fork=true"
gkc repos listForUser --params="username=niradler&per_page=100" --map="name,has_issues,fork" -f="fork=false" -o="table"
```