lomirus / get-github-mutual-followers

🤺 Query the github mutual followers by one's username.

Home Page:https://lomirus.github.io/get-github-mutual-followers/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Introduction

A Web App based on Vanilla TS to query the mutual followers of a specified Github user through the Github official APIs.

Usage

Online Version

Visit Github Pages

Local version

Download and run:

npm install
npm run build
npm run serve

Q&A

Why does it need my person access token?

You can use this app without your token, but the number of request would be very limited. Just like the below table shows:

User Type Rate Limit
Authorized 5,000 requests per hour
Authorized (Enterprise) 15,000 requests per hour
Unauthenticated 60 requests per hour

Visit the official documentation for more information.

How to create a github personal access token?

Sign in Github account and visit here.

P.S. You needn't to select any scope.

How many requests will it take when I search one user?

That depends on the number of following and followers of the user you specified. And they have such relationship:

n_{requests}=\lceil%20\frac{n_{following}}{100}\rceil%20+%20\lceil%20\frac{n_{followers}}{100}\rceil

About

🤺 Query the github mutual followers by one's username.

https://lomirus.github.io/get-github-mutual-followers/

License:MIT License


Languages

Language:TypeScript 92.0%Language:HTML 4.6%Language:CSS 3.0%Language:JavaScript 0.4%