github
github copied to clipboard
A higher-level wrapper around the Github API. Intended for the browser.
https://developer.github.com/v3/media/ example: ``` repo.read('master', 'README.md', { contentType: 'base64' }, function(error, data) { console.log(data.content); }); ```
I was getting an error when moving files, and I came across [this issue](https://github.com/philschatz/octokit.js/issues/78) with a suggested workaround that worked for me. So I thought I'd send over a PR...
It looks like the js api doesnt support forking into an organization even those the REST api supports it. https://developer.github.com/v3/repos/forks/#create-a-fork http://github-tools.github.io/github/docs/3.1.0/Repository.html#fork Can this be added? Thanks!
Reported by @xgeek-net in #516 . ` There has a bug when I download binary file with github api, and I found responseType needs to be stream but not text,...
Hi I am having an issue by posting a new tree on my Github. I wonder if it is my json file: {"tree": [{ "path": "graphics", "mode": "040000", "type": "tree"...
first, can this be run on a website with native js? Second, is the listStarredRepo function bugged. I tried running it with callbacks, with the .then. used my password and...
I checked the related issues list and nothing came up. I have had some frustrated organization members:  I searched online and found the instructions for changing from "private"...
Hello everyone! I did not find any **topics** API implementation (yeah, I know it's in preview) but I need that API for the personal purpose so I implemented it by...
How exactly do I get all the PRs and Issues related to a single Milestone on a repo?
As mentioned in github API: ``` In addition to the Basic Authentication credentials, you must send the user's authentication code (i.e., one-time password) in the X-GitHub-OTP header. ``` And we...