0.16.1 • Published 1 year ago

@mktcodelib/github-insights v0.16.1

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

GitHub Insights

A collection of functions to aggregate and evaluate data from the GitHub GraphQL API. Results are stored in IndexedDB.

npm i @mktcodelib/github-insights

Storing data is done by a web worker. The package provides a worker file that needs to be copied to a location that is accessible by the browser. E.g.:

cp node_modules/@mktcodelib/github-insights/dist/worker.js public/github-insights-worker.js

If you want to use a different filename/path, you can pass it to the Scanner constructor.

const scanner = new Scanner({
  accessToken: "<access token>",
  workerPath: '/path/to/worker.js', // default: '/github-insights-worker.js'
});

Usage

This package uses @mktcodelib/graphql-fetch-all to fetch all data from a complex GraphQL query with multiple paginated fields. A single "scan" can lead to hundreds of requests due to GitHub's API limitations.

You can either use functions with the Direct-suffic, to get all data at once, or use the generator functions, to get preliminary results and information after every request.

Direct

The results of the direct functions are NOT stored in IndexedDB!

import { Scanner } from '@mktcodelib/github-insights';

const scanner = new Scanner({ viewerToken: "<access token>" });

const {
  forkCount,
  followersForkCount,
  stargazerCount,
  followersStargazerCount,
  followersFollowerCount,
  mergedPullRequestCount,
  mergedPullRequestCount30d,
  mergedPullRequestCount365d,
} = await scanner.scanUserDirect('mktcode');

Generators

import { Scanner } from '@mktcodelib/github-insights';

const scanner = new Scanner({ viewerToken: "<access token>" });

scanner.scanUser('mktcode')((request) => {
  const {
    forkCount,
    followersForkCount,
    stargazerCount,
    followersStargazerCount,
    followersFollowerCount,
    mergedPullRequestCount,
    mergedPullRequestCount30d,
    mergedPullRequestCount365d,
  } = request.result;
})

Result will be complete after the last iteration Prelimanary and final results are stored in IndexedDB

Scores

The scores are based on the following metrics:

User

Reputation

A user's reputation is based on activity over time and the number of followers and followers's followers.

Repository

Activity

A repository's activity is based on the number of commits, issues and pull requests (and comments) and discussions.

Growth

Growth represents activity and popularity over time.

Popularity

A repository's popularity is based on the number of forks, stars, and pull requests and issues from external users.

Reputation

A repository's reputation is based on its authors' reputation.

0.16.1

1 year ago

0.16.0

1 year ago

0.15.0

1 year ago

0.14.0

1 year ago

0.13.0

1 year ago

0.12.1

1 year ago

0.12.0

1 year ago

0.11.1

1 year ago

0.11.0

1 year ago

0.10.0

1 year ago

0.9.0

1 year ago

0.8.1

1 year ago

0.8.0

1 year ago

0.7.1

1 year ago

0.7.0

1 year ago

0.6.0

1 year ago

0.5.7

1 year ago

0.5.6

1 year ago

0.5.5

1 year ago

0.5.4

1 year ago

0.5.3

1 year ago

0.5.2

1 year ago

0.5.1

1 year ago

0.5.0

1 year ago

0.4.1

1 year ago

0.3.1

1 year ago

0.3.0

1 year ago

0.2.1

1 year ago

0.1.1

1 year ago

0.1.0

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago