https://github.com/nexys-system/github-sdk
minimal Github SDK to easily access Github API - types
https://github.com/nexys-system/github-sdk
github-api typescript
Last synced: 3 months ago
JSON representation
minimal Github SDK to easily access Github API - types
- Host: GitHub
- URL: https://github.com/nexys-system/github-sdk
- Owner: nexys-system
- Created: 2022-01-31T18:59:42.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-11-04T13:12:51.000Z (over 1 year ago)
- Last Synced: 2025-03-09T15:35:03.158Z (3 months ago)
- Topics: github-api, typescript
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/@nexys/github-sdk
- Size: 136 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Github SDK
[](https://www.npmjs.com/package/@nexys/github-sdk)
[](https://github.com/nexys-system/github-sdk/actions/workflows/test.yml)
[](https://github.com/nexys-system/github-sdk/actions/workflows/publish.yml)
## 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});
})
```