
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
A web application to visualize GitHub repository commit history, written by cursor AI
99% AI (cursor) without any actual programming.
A web application that visualizes commit history for GitHub repositories using interactive charts. The application shows commit patterns over the last 30 days of any public GitHub repository, with both overall commit trends and per-user contribution breakdowns.
pipx install git-commit-chart
Run:
git-commit-chart --host 0.0.0.0 --port 8000 --production
Total commits view
Commits by user view
git clone https://github.com/yourusername/git-commit-chart.git
cd git-commit-chart
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -e .
For development, install with additional development dependencies:
pip install -e ".[dev]"
After installation, you can run the application using the git-commit-chart
command:
# Run in development mode (default)
git-commit-chart
# Run in production mode
git-commit-chart --production
# Specify host and port
git-commit-chart --host 0.0.0.0 --port 8000
--port
: Port to run the application on (default: 5000)--host
: Host to run the application on (default: 127.0.0.1)--production/--development
: Run in production mode with Waitress server (default: development)You can share specific repository visualizations by including the owner and repo in the URL:
http://localhost:5000/?owner=facebook&repo=react
http://localhost:5000/by-user?owner=facebook&repo=react
The development installation includes:
The package includes comprehensive tests for all major components. To run the tests:
# Install development dependencies first
pip install -e ".[dev]"
# Run all tests
pytest
# Run tests with coverage report
pytest --cov=git_commit_chart
# Run specific test files
pytest tests/test_api.py
pytest tests/test_routes.py
pytest tests/test_cli.py
The tests cover:
To build the package for distribution:
python -m build
This will create both wheel and source distribution in the dist/
directory.
Build and run using Docker:
# Build the image
docker build -t git-commit-chart .
# Run the container
docker run -p 5000:5000 git-commit-chart
Kubernetes manifests are provided in the k8s
directory. Deploy using:
kubectl apply -f k8s/deployment.yaml
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
A web application to visualize GitHub repository commit history, written by cursor AI
We found that git-commit-chart demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.