1.0.2 • Published 3 months ago

github-viewer-stats v1.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
3 months ago

Run as a script (using my own token)

npx github-viewer-stats contribs
{
  "name": "Tomer Figenblat",
  "company": "Red Hat",
  "status": "pr is coming",
  "contributingSince": 2017,
  "totalContributions": 10239,
  "contributionsCollection": {
    "totalCommitContributions": 7561,
    "totalIssueContributions": 114,
    "totalPullRequestContributions": 377,
    "totalPullRequestReviewContributions": 663,
    "totalRepositoriesWithContributedCommits": 202,
    "totalRepositoriesWithContributedIssues": 52,
    "totalRepositoriesWithContributedPullRequestReviews": 39,
    "totalRepositoriesWithContributedPullRequests": 98,
    "totalRepositoryContributions": 131,
    "totalDiscussionContributions": 80,
    "totalGistContributions": 7,
    "totalPackageContributions": 0
  }
}
npx github-viewer-stats repo aioswitcher
{
  "name": "aioswitcher",
  "description": "PyPi module integrating with various Switcher devices",
  "language": "Python",
  "license": "apache-2.0",
  "collaborators": 2,
  "forks": 9,
  "stars": 14,
  "watchers": 2,
  "latest": "3.2.1"
}
npx github-viewer-stats org my-organization
{
  "name": "My Organization Name",
  "description": "My organization description",
  "members": 217,
  "teams": 2,
  "repositories": 16,
  "pending": 0,
  "twoFactorAuthentication": false,
  "webCommitSignoff": false,
  "websiteUrl": "https://my-org-site.com/"
}

admin:org is only required for admin level organization stats, such as 2fa and pending members. If you do not require these admin properties or do not have admin permission to the organization to begin with, you can use read:org instead. Of course if won't use this tool for retrieving organization statistics, you can omit the admin all together.

npm install --save github-viewer-stats
// print my user statistics to the console
require('github-viewer-stats').contribs().then(r => console.log(JSON.stringify(r, null, 2)));
// print cool-org-name organization statistics to the console
require('github-viewer-stats').org('cool-org-name').then(r => console.log(JSON.stringify(r, null, 2)));
// print my aioswitcher repository statistics to the console
require('github-viewer-stats').repo('aioswitcher').then(r => console.log(JSON.stringify(r, null, 2)));
const { contribs, org, repo } = require('github-viewer-stats');

async function main() {
  // collect my user statistics
  let myContributions = await contribs();
  console.log(JSON.stringify(myContributions, null, 2));

  // collect cool-org-name organization statistics
  let myOrg = await org('cool-org-name');
  console.log(JSON.stringify(myRepo, null, 2));

  // collect my aioswitcher repository statistics
  let myRepo = await repo('aioswitcher');
  console.log(JSON.stringify(myRepo, null, 2));
}

main();
1.0.2

3 months ago

1.0.1

4 months ago

1.0.0

10 months ago

0.1.10

1 year ago

0.1.9

1 year ago

0.1.8

1 year ago

0.1.7

1 year ago

0.1.6

1 year ago

0.1.5

1 year ago

0.1.4

1 year ago

0.1.3

1 year ago

0.1.2

1 year ago

0.1.1

1 year ago

0.1.0

1 year ago