Count your personal repos' total stars.
# Using npm
npm install -g github-personal-stars
# Using yarn
yarn global add github-personal-stars
# Using npm
npm install --save github-personal-stars
# Using yarn
yarn add github-personal-stars
const countPersonalStars = require('.')
// use your username, 'ZYSzys' is mine
countPersonalStars('ZYSzys', (err, total) => {
console.log(err || total)
});
// =>
// Just a number.
MIT.