github-streak-scraper
v2.0.0
Published
A scraper which returns your current GitHub streak.
Downloads
3
Readme
GitHub Streak Scraper
Parses the Contribution graph to count the current streak of a GitHub user.
Usage
Wrap githubStreakScraper('GitHub-user-name')
in an async function/promise.
const getStreakData = async => {
const githubStreak = await githubStreakScraper('theDavidBarton');
console.log(githubStreak)
}
{
user: 'theDavidBarton',
currentlyOnStreak: true,
currentStreakCount: 18,
currentStreakStartDate: '2019-12-30'
}
License
MIT License
Copyright (c) 2020 David Barton