The Wayback Machine - https://web.archive.org/web/20150906070027/https://www.npmjs.com/package/node-github-api

node-github-api

retrieve github stars

github-api Image Image Image Image

retrieve github stars.

$ npm install --save github-api

###Get all stars

var github-api = require('node-github-api');
github.getStars('kwakayama')
.then(function(stars) {
  console.dir(stars.length);
})

###Get all stars from last id onwards

var github-api = require('node-github-api');
github.getStars('kwakayama', 18611173)
.then(function(stars) {
  console.dir(stars.length);
})

(Coming soon)

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using gulp.

(Nothing yet)

Copyright (c) 2014 Kentaro Wakayama. Licensed under the MIT license.