https://github.com/hbjydev/node-ghapi
A Node.js library to get data from the public GitHub API.
https://github.com/hbjydev/node-ghapi
github github-api node nodejs
Last synced: about 1 month ago
JSON representation
A Node.js library to get data from the public GitHub API.
- Host: GitHub
- URL: https://github.com/hbjydev/node-ghapi
- Owner: hbjydev
- Created: 2018-08-17T23:30:01.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-30T17:18:11.000Z (over 2 years ago)
- Last Synced: 2025-02-11T14:22:00.347Z (3 months ago)
- Topics: github, github-api, node, nodejs
- Language: TypeScript
- Homepage: https://ghapi.js.org
- Size: 492 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# node-ghapi [](https://haydennyyy.visualstudio.com/node-ghapi/_build/latest?definitionId=3&branchName=master) [](https://discord.gg/nMmeecb) [](https://npmjs.com/node-ghapi)
A GitHub API wrapper written in TypeScript
## Usage
```js
// JavaScript
const { User } = require( 'node-ghapi' );let user = new User('username', 'authentication-token');
``````ts
// TypeScript
import { User } from 'node-ghapi';let user = new User('username', 'authentication-token');
```> NOTE: This is a rewrite of the original version of this API wrapper.
> It is not yet on feature parity.