npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@git-stats-components/react

v1.0.7

Published

Beautiful GitHub/GitLab/Bitbucket contribution graphs for React

Readme

@git-stats-components/react

Beautiful contribution graphs for React

npm version License: MIT

Demo

View Live Demo

Git Stats Components Git Stats Components

Installation

npm install @git-stats-components/react

Quick Start

import { ContributionGraph, StatsBreakdown } from '@git-stats-components/react'
import '@git-stats-components/react/style.css'

function App() {
  return (
    <div>
      <ContributionGraph
        dataUrl="/data/git-stats.json"
        colorScheme="green"
      />
      <StatsBreakdown dataUrl="/data/git-stats.json" />
    </div>
  )
}

Components

ContributionGraph

GitHub-style contribution heatmap.

Props:

  • dataUrl (string) - Path to stats JSON file
  • profileIndex (number) - Which profile to display (default: 0)
  • colorScheme ('green' | 'blue' | 'purple' | 'orange') - Color theme
  • showSettings (boolean) - Show color scheme dropdown
  • cacheTTL (number) - Cache duration in milliseconds
  • onDayClick ((data: { date: string; count: number }) => void) - Day click handler
  • onColorSchemeChange ((scheme: ColorScheme) => void) - Color scheme change handler

Example:

function MyApp() {
  const handleDayClick = (data) => {
    console.log('Clicked:', data)
  }

  const handleColorChange = (scheme) => {
    console.log('Color scheme:', scheme)
  }

  return (
    <ContributionGraph
      dataUrl="/data/git-stats.json"
      profileIndex={0}
      colorScheme="blue"
      showSettings={true}
      onDayClick={handleDayClick}
      onColorSchemeChange={handleColorChange}
    />
  )
}

StatsBreakdown

Project and commit count statistics.

Props:

  • dataUrl (string) - Path to stats JSON file
  • profileIndexes (number[]) - Which profiles to aggregate
  • experienceData (ExperienceEntry[]) - Work experience for years calculation
  • showCustomStat (boolean) - Show custom stat (default: true)
  • customStatCalculator (function) - Custom stat calculation function

Example:

const experienceData = [
  {
    startDate: '2020-01-01',
    endDate: null, // current
    skills: ['JavaScript', 'React', 'Node.js']
  }
]

function calculatePizzas({ projects, commits, years }) {
  return (projects * 2 + commits * 0.5 + years * 100).toFixed(0)
}

function MyApp() {
  return (
    <StatsBreakdown
      dataUrl="/data/git-stats.json"
      experienceData={experienceData}
      showCustomStat={true}
      customStatCalculator={calculatePizzas}
    />
  )
}

Hook

Access data and state directly with the useGitStats hook:

import { useGitStats } from '@git-stats-components/react'

function MyComponent() {
  const { data, loading, error, dataSourceText, lastUpdatedText, isDummy } =
    useGitStats({
      dataUrl: '/data/git-stats.json',
      cacheTTL: 3600000, // 1 hour
      useStaleCache: true,
    })

  if (loading) return <div>Loading...</div>
  if (error) return <div>Error: {error.message}</div>

  return (
    <div>
      <p>{dataSourceText}</p>
      <p>{lastUpdatedText}</p>
      <pre>{JSON.stringify(data, null, 2)}</pre>
    </div>
  )
}

TypeScript Support

Full TypeScript support with exported types:

import type {
  GitStatsData,
  ColorScheme,
  Platform,
  ExperienceEntry,
  CustomStatCalculator,
} from '@git-stats-components/react'

const colorScheme: ColorScheme = 'green'

const experienceData: ExperienceEntry[] = [
  {
    startDate: '2020-01-01',
    endDate: null,
    skills: ['JavaScript', 'React', 'TypeScript']
  }
]

const customCalculator: CustomStatCalculator = ({ projects, commits, years }) => {
  return (projects * 2 + commits * 0.5).toFixed(0)
}

Styling

Override CSS variables for custom theming:

.git-contribution-graph {
  --graph-bg: #0d1117;
  --graph-text: #e6edf3;
  --graph-border: #30363d;
}

/* Or target specific classes */
.contribution-day.level-4.green {
  background-color: #00ff00 !important;
}

Setup

Quick Setup

Initialize in your project:

npx @git-stats-components/react init

This creates:

  • git-stats.config.js - Configuration file
  • .github/workflows/update-git-stats.yml - GitHub Action workflow
  • public/data/ - Directory for stats data

Configuration

Edit git-stats.config.js:

export default {
  profiles: [
    {
      username: 'your-github-username',
      platform: 'github',
      tokenSecret: 'GITHUB_TOKEN'
    }
  ],
  dataPath: 'public/data/git-stats.json',
  schedule: '0 2 * * *' // Daily at 2 AM UTC
}

Add Secrets

Go to Settings → Secrets and variables → Actions and add your tokens.

That's it! The GitHub Action will fetch your stats daily.

For more details, see the main git-stats-components repository.

License

MIT © Derek Johnston