Github SDK
Get started
Install
yarn add @nexys/github-sdk
Integrate in code
import { Rest } from "@nexys/github-sdk";
// example: update repo
Rest.Repo.update(
{description: 'my new repo description'},
'my organization',
'myrepo',
'mytoken'
).then(response => {
console.log({response});
})