https://github.com/dog-ai/github-wrapper
A :octocat: GitHub :package: wrapper library
https://github.com/dog-ai/github-wrapper
github github-actions github-handyman github-wrapper nodejs wrapper wrapper-library
Last synced: about 2 months ago
JSON representation
A :octocat: GitHub :package: wrapper library
- Host: GitHub
- URL: https://github.com/dog-ai/github-wrapper
- Owner: dog-ai
- License: mit
- Created: 2017-06-13T16:42:34.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2026-02-28T04:22:26.000Z (about 2 months ago)
- Last Synced: 2026-02-28T10:55:41.511Z (about 2 months ago)
- Topics: github, github-actions, github-handyman, github-wrapper, nodejs, wrapper, wrapper-library
- Language: JavaScript
- Homepage:
- Size: 5.32 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 74
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README
# A :octocat: GitHub :package: wrapper library
[](https://github.com/dog-ai/github-wrapper/actions?workflow=ci)
[](https://coveralls.io/github/dog-ai/github-wrapper?branch=master)
[](https://github.com/dog-ai/github-wrapper/releases)
[](https://www.npmjs.com/package/@dog-ai/github-wrapper)
[](https://www.npmjs.com/package/@dog-ai/github-wrapper)
> A GitHub wrapper library.
### Features
* Uses [GitHub REST API client for JavaScript](https://github.com/octokit/rest.js) :octocat: :white_check_mark:
### How to install
```
npm install @dog-ai/github-wrapper
```
### How to use
#### Use it in your app
```javascript
const GitHub = require('github-wrapper')
const github = new GitHub({ octokit: { auth: 'my-personal-token' } })
github.getOrgRepos('dog-ai')
.then((repos) => repos.forEach(({ name }) => console.log(name)))
```