:fallen_leaf: Start anew. Unfollow everyone who you currently follow on GitHub.
$ npm install --global github-unfollow-everyone
$ github-unfollow-everyone <username> <password>
:warning: Running this command will irreversibly unfollow everyone who you currently follow!
$ npm install --save github-unfollow-everyone
var unfollowEveryone = require('github-unfollow-everyone');
unfollowEveryone('<username>', '<password>', function(error) {
if (error) {
console.log('oops. an error occurred:', error);
return;
}
console.log('done.');
});