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 🙏

© 2025 – Pkg Stats / Ryan Hefner

astro-loader-github-prs

v1.3.1

Published

Astro loader for fetching GitHub Pull Requests, supporting both build-time and runtime retrieval.

Readme

astro-loader-github-prs

version jsDocs.io npm downloads demo

This package provides GitHub Pull Request (PR) loaders for Astro projects. It includes:

  • githubPrsLoader: Loads PRs at build time using a search query.
  • liveGithubPrsLoader: Fetches PRs at runtime on each request — multiple PRs by search query or a single PR by its identifier.

Installation

npm install astro-loader-github-prs

Usage

To use the Astro loader, ensure Astro version ^4.14.0 || ^5.0.0. For ^4.14.0, enable the experimental content layer in astro.config.ts:

export default defineConfig({
  experimental: {
    contentLayer: true,
  },
})

githubPrsLoader (Build-time Collection)

In src/content/config.ts (for ^4.14.0) or src/content.config.ts (for ^5.0.0), import and configure the build-time loader to define a new content collection:

import { defineCollection } from "astro:content"
import { githubPrsLoader } from "astro-loader-github-prs"

const githubPrs = defineCollection({
  loader: githubPrsLoader({
    search: 'author:username created:>=2024-10-01',
  }),
})

export const collections = { githubPrs }

Query the content collection like any other Astro content collection to render the loaded GitHub PRs:

---
import { getCollection } from "astro:content"

const prs = await getCollection("githubPrs")
---

{
  prs.map(async (pr) => {
    const { Content } = await render(pr)
    return (
      <div>
        <a href={pr.data.url}>
          {pr.data.repository.nameWithOwner}#{pr.data.number}
        </a>
        <p>{pr.data.title}</p>
        <Content />
      </div>
    )
  })
}

To update the data, trigger a site rebuild (e.g., using a third-party cron job service), as the loader fetches data only at build time.

liveGithubPrsLoader (Live Collection, Experimental)

Astro 5.10+ introduces experimental live content collections, which allow data fetching at runtime. To use this feature, enable the experimental liveContentCollections flag as shown below, and use an adapter that supports on-demand rendering.

// astro.config.mjs
export default {
  experimental: {
    liveContentCollections: true,
  },
};

In src/live.config.ts, import and configure the live loader to define a new live content collection:

// src/live.config.ts
import { defineLiveCollection } from 'astro:content';
import { liveGithubPrsLoader } from 'astro-loader-github-prs';

const liveGithubPrs = defineLiveCollection({
  loader: liveGithubPrsLoader(),
});

export const collections = { liveGithubPrs };

Query at runtime using getLiveCollection() or getLiveEntry():

---
export const prerender = false;
import { getLiveCollection, getLiveEntry } from 'astro:content';

// Get PRs
const { entries: prs, error } = await getLiveCollection('liveGithubPrs',{
  search: 'repo:withastro/astro',
  monthsBack: 3,
  maxEntries: 50,
});

// Get individual PR
/* const { entry: pr } = await getLiveEntry('liveGithubPrs', {
  // by PR node ID
  identifier: 'PR_kwDOFL76Q86uDYLC',

  // by url
  identifier: 'https://github.com/withastro/astro/pull/12345',

  // by object
  identifier: { owner: 'withastro', repo: 'astro', number: 12345 },
}); */
---

{
  error ? (
    <p>{error.message}</p>
  ) : (
    <div>
      {prs?.map((pr) => (
        <div>
          <a href={pr.data.url}>
            {pr.data.repository.nameWithOwner}#{pr.data.number}
          </a>
          <p set:html={pr.data.titleHTML} />
          <div set:html={pr.data.bodyHTML} />
          {/* Optional `<Content />` from `await render(pr)` */}
        </div>
      ))}
    </div>
  )
}

Configuration

githubPrsLoader Options

| Option (* required) | Type (default) | Description | | ------------------- | -------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | search* | string | The search string for querying pull requests on GitHub. This string will be concatenated with type:pr to form the complete search query. See how to search pull requests. For examples:- 'author:xxx created:>=2024-01-01': matches prs written by xxx that were created after 2024.- 'author:xxx -user:xxx': matches prs written by xxx, but not to their own repositories. | | monthsBack | number | The number of recent months to load pull requests, including the current month. The loader automatically converts this to a date for the 'created' qualifier in the search query. If the 'created' qualifier is defined in search option, it will override this value. | | maxEntries | number | Maximum number of pull requests to load.- Based on GitHub GraphQL search max 1,000 results .- Returns up to maxEntries, or fewer if fewer exist.- If monthsBack is set and results exceed maxEntries, only maxEntries are returned. | | clearStore | boolean (default: false) | Whether to clear the store scoped to the collection before storing newly loaded data. | | githubToken | string (Defaults to the GITHUB_TOKEN environment variable) | A GitHub PAT with at least repo scope permissions. Defaults to the GITHUB_TOKEN environment variable. If configured here, keep confidential and avoid public exposure. See how to create one and configure env vars in an Astro project. |

liveGithubPrsLoader Options

| Option (* required) | Type (default) | Description | | ------------------- | -------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | githubToken | string (Defaults to the GITHUB_TOKEN environment variable) | A GitHub PAT with at least repo scope permissions. Defaults to the GITHUB_TOKEN environment variable. If configured here, keep confidential and avoid public exposure. See how to create one and configure env vars in an Astro project. |

liveGithubPrsLoader Collection Filters

| Option (* required) | Type (default) | Description | | ------------------- | -------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | search* | string | The search string for querying pull requests on GitHub. This string will be concatenated with type:pr to form the complete search query. See how to search pull requests. For examples:'author:xxx created:>=2024-01-01': matches prs written by xxx that were created after 2024.'author:xxx -user:xxx': matches prs written by xxx, but not to their own repositories. | | monthsBack | number | The number of recent months to load pull requests, including the current month. The loader automatically converts this to a date for the 'created' qualifier in the search query. If the 'created' qualifier is defined in search option, it will override this value. | | maxEntries | number | Maximum number of pull requests to load.- Based on GitHub GraphQL search max 1,000 results .- Returns up to maxEntries, or fewer if fewer exist.- If monthsBack is set and results exceed maxEntries, only maxEntries are returned. |

liveGithubPrsLoader Entry Filters

| Option (* required) | Type (default) | Description | | ------------------- | -------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | identifier* | string | The identifier for a pull request, which can be one of the following:- A PR node ID string: "PR_" + 16 Base64 chars.- A GitHub PR URL.- An object with fields: owner, repo, number. |

Schema

The collection entries use the following Zod schema:

const GithubPrSchema = z.object({
  id: z.string(),
  url: z.string(),
  title: z.string(),
  titleHTML: z.string(),
  number: z.number(),
  state: z.enum(['CLOSED', 'MERGED', 'OPEN']),
  isDraft: z.boolean(),
  body: z.string(),
  bodyHTML: z.string(),
  bodyText: z.string(),
  author: z
    .union([
      z.object({
        login: z.string(),
        name: z.string().optional(),
        url: z.string(),
        avatarUrl: z.string(),
      }),
      z.null(),
    ])
    .optional(),
  repository: z.object({
    name: z.string(),
    nameWithOwner: z.string(),
    url: z.string(),
    stargazerCount: z.number(),
    isInOrganization: z.boolean(),
    owner: z.object({
      login: z.string(),
      name: z.string().optional(),
      url: z.string(),
      avatarUrl: z.string(),
    }),
  }),
  createdAt: z.string(),
  mergedAt: z.union([z.string(), z.null()]).optional(),
})

Astro uses these schemas to generate TypeScript interfaces for autocompletion and type safety. When customizing the collection schema, keep it compatible with the loader’s built-in Zod schema to avoid errors. To request support for new fields, open an issue.

Live Collections Error Handling

Live loaders may fail due to network, API, or validation errors. Handle these errors in your components. The live loader also returns specific error codes:

  • INVALID_FILTER: Missing required filter options.
  • COLLECTION_LOAD_ERROR: Failed to load collection.
  • ENTRY_LOAD_ERROR: Failed to load individual entry.

Changelog

See CHANGELOG.md for the change history of this loader.

Contribution

If you see any errors or room for improvement, feel free to open an issues or pull request . Thank you in advance for contributing! ❤️