2.4.1 • Published 9 years ago

jhub v2.4.1

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

jhub

Release npm package License Join the chat at https://gitter.im/TangChr/jhub

Build Status Downloads devDependencies

JavaScript bindings for the GitHub API.

  • Get information from the GitHub API (Read-only).
  • Runs in Node.js apps and the browser.
  • No authentication required.
  • "Minified" version available.
npm install jhub
var jhub = require('jhub');

jhub.init('TangChr');

// List all repositories for user TangChr
jhub.repos(function(repos) {
    for(var r in repos) {
        var repo = repos[r];
        console.log(repo.name + ': ' + repo.htmlUrl);
    }
});

// List all releases for repository TangChr/jhub. jhub must be initialized before this.
var repo = jhub.repo('jhub');
repo.releases(function(releases) {
    for(var r in releases) {
        var release = releases[r];
        console.log(release.tagName + ': ' + release.name);
    }
});
2.4.1

9 years ago

2.4.0

9 years ago

2.3.8

9 years ago

2.3.7

9 years ago

2.3.6

9 years ago

2.3.5

9 years ago

2.3.4

9 years ago

2.3.3

10 years ago

2.3.2

10 years ago

2.3.1

10 years ago

2.3.0

10 years ago

2.2.1

10 years ago

2.2.0

11 years ago

2.1.1

11 years ago

2.1.0

11 years ago

2.0.0

11 years ago