Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.18 KB

File metadata and controls

28 lines (21 loc) · 1.18 KB

A :octocat: GitHub 📦 wrapper library

Coverage Status Version Downloads

A GitHub wrapper library.

Features

How to install

npm install @dog-ai/github-wrapper

How to use

Use it in your app

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)))