Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 874 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 874 Bytes

Github SDK

npm version Build and Test Package Publish Code style

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