Extract stargazers count for specified repository written in javascript.
$ npm install --save-dev get-repo-stargazers-count
const repoStarsCount = require('get-repo-stargazers-count');
repoStarsCount.forGithub('gulp')
.then(result => {
// do something with result
})
.catch(err => {
// handle error
})
MIT