jamieweavis / contribution

πŸ—“ GitHub contribution streak & stat fetcher with zero dependencies

Home Page:https://npm.im/contribution

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Contribution

πŸ—“ GitHub contribution streak & stat fetcher with zero dependencies

build downloads version license

Install

npm install contribution

Usage

import { fetchStats } from 'contribution';

// Callbacks
fetchStats('jamieweavis', {
  onSuccess: gitHubStats => console.log(gitHubStats),
  onFailure: error => console.log(error),
});

// Promises
fetchStats('jamieweavis')
  .then(gitHubStats => console.log(gitHubStats))
  .catch(error => console.log(error));

// Async/await
try {
  const gitHubStats = await fetchStats('jamieweavis');
  console.log(gitHubStats);
} catch (error) {
  console.log(error);
}
interface GitHubStats {
  streak: {
    best: number;
    current: number;
    isAtRisk: boolean;
  };
  contributions: {
    best: number;
    total: number;
    current: number;
  };
}

Related

  • Streaker - πŸ™ GitHub contribution streak & stat tracking menu bar app
  • Streaker CLI - πŸ™ GitHub contribution streak & stat tracking CLI app

About

πŸ—“ GitHub contribution streak & stat fetcher with zero dependencies

https://npm.im/contribution

License:MIT License


Languages

Language:TypeScript 98.9%Language:Shell 1.1%