@dog-ai/github-wrapper

A GitHub wrapper library


Keywords
github, github-actions, github-handyman, github-wrapper, nodejs, wrapper, wrapper-library
License
Unlicense
Install
npm install @dog-ai/github-wrapper@2.0.65

Documentation

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