An open API service indexing awesome lists of open source software.

https://github.com/guofei9987/star_counter

Count a GitHub user's stars and forks(在线统计账号star数量)
https://github.com/guofei9987/star_counter

github github-api number star

Last synced: 5 months ago
JSON representation

Count a GitHub user's stars and forks(在线统计账号star数量)

Awesome Lists containing this project

README

          

# star_counter
Count a GitHub user's total stars and forks

demo

input the github id you want to count, and click the `Calculate` button

## Use on your website
paste this on your website
```html

function func_1() {
document.getElementById("star_counter").innerHTML = 'If not print for seconds, please refresh';
github_id = document.getElementById("user").value;
document.getElementById("star_counter").innerHTML = cal_github_star(github_id);
}

Input github id:


```