{"id":15007960,"url":"https://github.com/minagishl/git-commit-analyzer","last_synced_at":"2026-03-08T20:38:28.686Z","repository":{"id":257535417,"uuid":"858521370","full_name":"minagishl/git-commit-analyzer","owner":"minagishl","description":"A tool for analyzing commits, etc. from Git.","archived":false,"fork":false,"pushed_at":"2024-09-17T06:43:06.000Z","size":273,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-13T01:33:03.101Z","etag":null,"topics":["analytics","git","react","remix"],"latest_commit_sha":null,"homepage":"https://git-commit-analyzer.pages.dev","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/minagishl.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"custom":"https://www.amazon.jp/hz/wishlist/ls/4PK5XV6L033Z"}},"created_at":"2024-09-17T03:36:02.000Z","updated_at":"2025-02-03T01:57:25.000Z","dependencies_parsed_at":null,"dependency_job_id":"035ee50b-c8b1-4d50-9ab1-7918895c5912","html_url":"https://github.com/minagishl/git-commit-analyzer","commit_stats":null,"previous_names":["minagishl/glance"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/minagishl/git-commit-analyzer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minagishl%2Fgit-commit-analyzer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minagishl%2Fgit-commit-analyzer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minagishl%2Fgit-commit-analyzer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minagishl%2Fgit-commit-analyzer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/minagishl","download_url":"https://codeload.github.com/minagishl/git-commit-analyzer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minagishl%2Fgit-commit-analyzer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30272497,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-08T20:26:37.259Z","status":"ssl_error","status_checked_at":"2026-03-08T20:26:27.996Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["analytics","git","react","remix"],"created_at":"2024-09-24T19:14:39.384Z","updated_at":"2026-03-08T20:38:28.656Z","avatar_url":"https://github.com/minagishl.png","language":"TypeScript","funding_links":["https://www.amazon.jp/hz/wishlist/ls/4PK5XV6L033Z"],"categories":[],"sub_categories":[],"readme":"# Git Commit Analyzer\n\nThis project is a Git Commit Analyzer that allows you to visualize git commit statistics using an interactive dashboard. The application is built using Remix, Cloudflare Pages, and incorporates Chart.js for visualization.\n\n## Features\n\n- **Git Log Parsing**: Extract commit data from a git log file.\n- **Chart Visualization**: Visualize commit metrics, including insertions, deletions, and commit frequencies by various dimensions like author, date, and time.\n- **Responsive Interface**: Built with React and Tailwind CSS for a smooth user experience on all devices.\n- **Cloudflare Integration**: Deploy seamlessly to Cloudflare Pages.\n\n## Technologies Used\n\n- **[Remix](https://remix.run/)**: React framework for full-stack applications.\n- **[Cloudflare](https://www.cloudflare.com/)**: Used for deployment via Cloudflare Pages.\n- **[Chart.js](https://www.chartjs.org/)**: Used for rendering visual charts.\n- **[Tailwind CSS](https://tailwindcss.com/)**: Utility-first CSS framework for styling.\n- **TypeScript**: Ensures type safety across the application.\n- **ESLint**: Code quality and consistency enforcement.\n\n## Getting Started\n\n### Prerequisites\n\n- **Node.js v20.x.x** or above (see `.nvmrc` for the version).\n- **npm** for managing dependencies.\n\n### Setup\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/minagishl/git-commit-analyzer.git\n   ```\n\n2. Install the dependencies:\n\n   ```bash\n   npm install\n   ```\n\n3. Run the development server:\n\n   ```bash\n   npm run dev\n   ```\n\n   This will start a local development server.\n\n### Using the Git Commit Analyzer\n\n1. Obtain the git log from your repository by running:\n\n   ```bash\n   git log --numstat --date=iso-strict \u003e gitlog.txt\n   ```\n\n2. Copy the content of the `gitlog.txt` file and paste it into the text area in the web application.\n3. Click on \"Analyze\" to visualize the commit data.\n\n### Building for Production\n\n1. Build the project for production:\n\n   ```bash\n   npm run build\n   ```\n\n2. Deploy to Cloudflare Pages:\n\n   ```bash\n   npm run deploy\n   ```\n\n### Type Generation for Cloudflare Bindings\n\nIf you modify `wrangler.toml`, regenerate the Cloudflare types:\n\n```bash\nnpm run typegen\n```\n\n## Linting and Type Checking\n\n- To check for lint errors:\n\n  ```bash\n  npm run lint\n  ```\n\n- To check for TypeScript type errors:\n\n  ```bash\n  npm run typecheck\n  ```\n\n## Project Structure\n\n- **`app/`**: Contains all the front-end React components and route logic.\n- **`public/`**: Contains static assets like icons and images.\n- **`functions/`**: Contains the Cloudflare Pages functions.\n- **`tailwind.config.ts`**: Configuration file for Tailwind CSS.\n- **`tsconfig.json`**: TypeScript configuration.\n- **`wrangler.toml`**: Configuration file for Cloudflare Workers.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fminagishl%2Fgit-commit-analyzer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fminagishl%2Fgit-commit-analyzer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fminagishl%2Fgit-commit-analyzer/lists"}