
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
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.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.