github-unstar-all
Version:
Start anew. Unstar all of the repositories you once starred on GitHub.
39 lines (27 loc) • 817 B
Markdown

#GitHub Unstar All
:fallen_leaf: _Start anew. Unstar all of the repositories you once starred on GitHub._
##CLI
```
$ npm install --global github-unstar-all
```
```
$ github-unstar-all <username> <password>
```
_:warning: Running this command will **ireversibly** unstar all of your [starred repositories](https://github.com/stars)!_
##API
```
$ npm install --save-dev github-unstar-all
```
```javascript
var unStarAll = require('github-unstar-all');
unStarAll("<username>", "<password>", function (error) {
if (error) {
console.log('error', error);
return;
}
console.log('done.');
});
```
##Related
- [`github-unfollow-everyone`](https://github.com/alexbooker/github-unfollow-everyone)