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

decap-cms-oauth-astro

v0.1.3

Published

Add Decap CMS’s admin dashboard and a custom OAuth backend to your Astro project

Readme

A integration plugin that mounts the Decap CMS (or any compatible CMS like Sveltia) admin dashboard and custom OAuth authentication backend routes to /oauth&/oauth/callback using GitHub as the provider.

Installation

npx astro add decap-cms-oauth-astro

Usage

  1. Put your config.yml file in public/admin/config.yml (see Decap CMS Docs for more info)

    backend:
        name: github
        repo: Foxie-404/decap-cms-oauth-astro # change this to your repo
        branch: main # change this to your branch
        site_domain: decap-cms-oauth-astro.vercel.app # change this to your domain
        base_url: https://decap-cms-oauth-astro.vercel.app # change this to your prod URL
        auth_endpoint: oauth # the oauth route provided by the integration
  2. On GitHub, go to Settings > Developer Settings > OAuth apps > New OAuth app. Or use this direct link. Homepage URL: This must be the prod URL of your application. Authorization callback URL: This must be the prod URL of your application followed by /oauth/callback. Homepage URL: This must be the prod URL of your application. Authorization callback URL: This must be the prod URL of your application followed by /oauth/callback. Once registered, click on the Generate a new client secret button. The app’s Client ID and Client Secret will be displayed. Then navigate to https://github.com/apps/<app slug>/installations/new to install it on the repo. You can scope the access tokens further if wanted - details on this page

    curl -s 'https://api.github.com/repos/<owner>/<repo>' | jq .id

    You can then use this ID for the OAUTH_GITHUB_REPO_ID environment variable.

  3. Set env variables

    # GitHub OAuth App & GitHub App
    OAUTH_GITHUB_CLIENT_ID=
    OAUTH_GITHUB_CLIENT_SECRET=
    # GitHub App only
    OAUTH_GITHUB_REPO_ID=

Custom Config Path

By default, the integration looks for the Decap CMS configuration at public/admin/config.yml. You can customize this path using the configPath option:

decapCmsOauth({
    configPath: ".decap.yml" // Path relative to project root
})

Whitelist and Validation

To ensure compatibility and security, only official Decap CMS fields are allowed in the configuration. These include: backend, site_url, display_url, logo, logo_url, media_folder, public_folder, collections, publish_mode, show_preview_links, slug, local_backend, i18n, media_library, editor, search, locale.

The fields backend and collections are required. If they are missing or if the configuration file is invalid, the integration will throw an error to terminate the build process.

Acknowledgements