Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fitzgen/github-api

Javascript bindings for the Github API.
https://github.com/fitzgen/github-api

Last synced: about 1 month ago
JSON representation

Javascript bindings for the Github API.

Awesome Lists containing this project

README

        

Exposes `gh` to the global environment. Tries to follow both the form of Github
HTTP API and JS style.

```js
gh.authenticate("fitzgen", "sdfk32we-FAKE-uydfs7f-rhrwe8r7");
var huddlej = gh.user("huddlej");
huddlej.show(function (data) {
console.log(data.user);
});
huddlej.repos(function (data) {
console.log("Number of repos: " + data.repositories.length);
});
var wujs = gh.repo("fitzgen", "wu.js")
wujs.show(function (data) {
console.log("Number of watchers: " + data.repository.watchers);
});
wujs.update({ has_wiki: 0 }); // Unfortunately, no callbacks with POSTs :(
```

COMPLETE
========

* Authentication
* Users
* Repos
* Commits
* Issues
* Gists
* Network
* Objects

TODO
====

* Documentation