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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@andypsheridan/strapi-plugin-github-projects

v0.1.1

Published

A Strapi v4 plugin to create projects from your public GitHub repositories from the admin panel.

Readme

strapi-plugin-github-projects

A Strapi v4 plugin that adds a GitHub Projects admin panel page. Browse your public GitHub repositories from inside Strapi, and turn any of them into a project content-type entry with one click — single or in bulk.

Features

  • List your public GitHub repositories inside the Strapi admin panel
  • Create a Strapi project entry from any repository (title, short description, long description from README, repository URL)
  • Bulk create / bulk delete (single round-trip, transactional)
  • Confirmation dialog before deletes
  • Author attribution: projects are created createdBy the admin user who clicked Add
  • Permission-gated route (plugin::github-projects.repos.read) so non-super-admin roles can be locked out

Requirements

  • Strapi ^4.0.0
  • Node >=18.0.0 <=20.x.x
  • A GitHub personal access token with read:user and public_repo scopes

Installation

yarn add strapi-plugin-github-projects
# or
npm install strapi-plugin-github-projects

Configuration

1. Enable the plugin

In your Strapi project, edit config/plugins.js:

module.exports = ({ env }) => ({
  "github-projects": {
    enabled: true,
  },
});

2. Set the GitHub token

The plugin reads process.env.GITHUB_TOKEN. Add it to your .env:

GITHUB_TOKEN=ghp_your_personal_access_token

Create the token at https://github.com/settings/tokens with at minimum the read:user and public_repo scopes.

3. Grant permissions

After starting Strapi, go to Settings → Administration Panel → Roles and grant:

  • View and access the plugin — controls whether the plugin's nav item appears
  • Read Github repositories — controls whether the role can call GET /github-projects/repos

Grant these on whichever roles (Editor, Author, custom) should have access. Super Admin gets them automatically.

4. Restart

yarn develop

The "Github Projects" item appears in the admin nav.

Usage

Open the plugin from the admin nav. You'll see a table of your public repositories. For each row:

  • Add (+) — creates a project entry from this repo
  • Edit (pencil) — opens the existing project in the content manager
  • Delete (trash) — deletes the project, asks for confirmation first

Use the row checkboxes plus the bulk buttons at the top to add or delete multiple projects in one request.

License

MIT