Explore the full history of any GitHub repository.
A tool to explore the complete history of any GitHub repository. Not just stars, but commits, forks, PRs, issues, and contributors over time.
Unlike other star history tools that show a straight line from 40K to the current count, this one shows the actual daily data for repos with 40K+ stars.
| Feature | What it does |
|---|---|
| π Full Star History | Complete daily star counts for any repo |
| β° Hourly Stars | Hour-by-hour activity with timezone support |
| π Compare Repos | Side-by-side comparison of any two repositories |
| π Activity Timelines | Commits, PRs, Issues, Forks, Contributors over time |
| π Pin Favorites | Bookmark repos for quick access without retyping |
| π° Feed Mentions | See when repos were mentioned on HN, Reddit, YouTube, GitHub |
| πΎ Export Data | Download as CSV or JSON |
| π Dark Mode | Easy on the eyes |
Stars are a bit controversial, but clearly valued. Many repos show them prominently and even ask for them.
They don't always correlate with quality though. Plenty of great tools stay small, while others blow up due to timing, distribution, or hitting the right audience.
See Factors contributing to daily stars for an explanation of why some repos get high numbers of stars.
Still, getting stars feels good and can be motivating. Feedback and engagement matter even more.
This tool shows you the trajectory so you can make informed decisions about which libraries to use, which projects to contribute to, and which ones to watch.
emanuelef.github.io/daily-stars-explorer
No signup. No cookies. No ads. Just paste a repo and explore.
See exactly when a repo went viral and why.
gh-stars-history-trim.mov
gh-compare.mov
If you want to run locally or self-host you can use the docker image available in ghcr.
Requirements:
- Docker
- GitHub account to generate a Personal Access Token (PAT) to call GH APIs
- A
.envfile (refer to.env.example)
Note: Only PAT is required. The other environment variables are needed if you want to visualize feeds from different providers (HN, Reddit, YouTube).
PAT can be generated with no access to any of your reposβit's just needed to call GraphQL APIs on public repositories. Get one at github.com/settings/tokens
# 1. Create .env with your GitHub PAT
echo "PAT=your_github_token" > .env
# 2. Run
docker run --rm --env-file .env -p 8080:8080 ghcr.io/emanuelef/daily-stars-explorer:latestOpen localhost:8080. Done.
Note: Without a PAT, GitHub's GraphQL API won't work and the REST API is limited to 60 requests/hour (essentially unusable for this tool). With a PAT you get 5,000 requests/hour.
# Backend
cp .env.example .env && go run main.go
# Frontend (separate terminal)
cd website && npm install && npm start- Enter any GitHub repo (e.g.,
kubernetes/kubernetes) - Wait for the fetch (repos with 100K+ stars take ~3 min, we fetch from both ends simultaneously)
- Explore the data with interactive charts, filters, and exports
- Data is cached for 7 days with option to refresh
The tool offers various ways to aggregate and analyze star data beyond simple daily counts.
See aggregate.md for a detailed explanation of:
- Available aggregation methods (moving averages, LOESS smoothing, derivatives, etc.)
- How trends are calculated and predicted
- Use cases for different visualization modes
| What | Details |
|---|---|
| Initial fetch time | Repos with 100K+ stars take ~3 minutes for the first fetch. The tool fetches star history from both ends simultaneously to speed things up. |
| Cached data | Once a repo is fully fetched, it's cached for 7 days. Subsequent visits only fetch the delta (new stars since last update), which takes just seconds. |
| Rate limits | With a GitHub PAT, you can fetch ~500K stars per hour. Without a PAT, you're limited to 60 requests/hour (not practical for this tool). |
Limited Error Handling
Currently, the project has limited error handling. I plan to improve this aspect, which includes implementing warnings to alert users when the rate limit might hinder the completion of the star retrieval.
UI and Code Quality
I'm aware that the user interface and code quality have room for improvement. Your feedback and suggestions are welcome as I continue to refine these aspects.
PRs welcome! Open an issue or submit a pull request.
