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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@mktcodelib/github-insights

v0.16.1

Published

Utilities to fetch and evaluate GitHub data.

Downloads

5

Readme

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.