Removed Bower due to various issues
Features
- Added support for reository contributors
Fixed
- Fixed "inconsistency" between node.js and native JavaScript implementation
- Maintenance update
- Various changes and fixes (no new features)
Bower
JavaScript Coding Conventions
Fixed
- Fixed bad JavaScript code
- Updated the way Gulp tests jhub
Fixed
- Fixed some typos
In one word: gulp
Improved
Various improvements
Features
- Added location, bio, following and followers to User Information
- Updated test script (test.js)
Fixed
- Fixed support for node.js
Features
- Added gitUrl, sshUrl, cloneUrl to repos.
- Added createdAt, updatedAt and pushedAt to repositories.
- Added id, pullUrl and pushUrl to gist.get().
Features
- Added owner to repository info
Features
- Added "stargazers" to repository info
- Added tags to rpository info
- Ability to initialize jhub without passing username
Features
- Organization-support
- Users support
/* List a users organizations */
var github = jhub.init('TangChr');
github.userOrgs(function(orgsRes) {
for(o in orgsRes) {
var org = github.org(orgsRes[o].login);
org.get(function(orgRes) {
console.log(orgRes.login+': '+orgRes.name);
});
}
});
/* List members of a specific organization */
var github = jhub.init();
var org = github.org('TangDev');
org.members(function(members) {
for(m in members) {
var user = github.user(members[m].login);
user.get(function(userRes) {
console.log(userRes.name);
});
}
});
Other
Added to npm
npm install jhub