🍂 Start anew. Unstar all of the repositories you once starred on GitHub.
$ npm install --global github-unstar-all
$ github-unstar-all <username> <password>
$ npm install --save-dev github-unstar-all
var unStarAll = require('github-unstar-all');
unStarAll("<username>", "<password>", function (error) {
if (error) {
console.log('error', error);
return;
}
console.log('done.');
});