ghapi - GitHub API Wrapper
About
ghapi
is a GitHub API wrapper built in NodeJS mainly for use with my current Discord bot project, DevBot.
ghapi
does not however support searching your private repos at this time, nor does it support anything outside of Repos and Users. I will be making these features soon.
Installation
To install ghapi
, you can use Yarn or NPM.
yarn add node-ghapi
npm i -s node-ghapi
Usage
var ghapi = require('node-ghapi');
ghapi.repo('haydennyyy', 'ghapi', repo => {
console.log(repo);
});
ghapi.user('haydennyyy', user => {
console.log(user);
});
Documentation
Documentation for ghapi
can be found here.
Contributing
If you're gonna contribute be sure to document everything as much as possible in JSDoc, so that I can re-build the documentation and not have to include tons.
Features