https://github.com/yuzuk1shimotsuki/github-followers-utility
A CLI helper for managing GitHub follow/unfollow actions.
https://github.com/yuzuk1shimotsuki/github-followers-utility
github github-api javascript js nodejs
Last synced: 7 months ago
JSON representation
A CLI helper for managing GitHub follow/unfollow actions.
- Host: GitHub
- URL: https://github.com/yuzuk1shimotsuki/github-followers-utility
- Owner: Yuzuk1Shimotsuki
- License: mit
- Created: 2024-12-27T06:11:43.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-27T06:16:54.000Z (over 1 year ago)
- Last Synced: 2025-01-01T17:34:51.446Z (over 1 year ago)
- Topics: github, github-api, javascript, js, nodejs
- Language: JavaScript
- Homepage:
- Size: 12.7 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# GitHub Followers Utility
A CLI tool for managing GitHub follow/unfollow actions.
## Features
- Export users you are following to a CSV file.
- Export organization members to a CSV file.
- Follow/unfollow users from a CSV file.
- Follow/unfollow all members of an organization.
## Installation
1. Clone the repository:
```bash
git clone https://github.com/Yuzuk1Shimotsuki/github-followers-utility.git
cd github-followers-utility
2. Install dependencies:
```bash
npm install axios commander
```
3. Set up your GitHub credentials:
```bash
export GITHUB_USERNAME=your_username
export GITHUB_TOKEN=your_personal_access_token
```
## Usage
- Export following users to CSV:
```bash
node script.js export-following following.csv
```
- Follow users from CSV:
```bash
node script.js follow-from-csv following.csv --delay 10
```
## License
This project is licensed under the MIT License. See [LICENSE](LICENSE) for details.