Skip to content

nexys-system/github-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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