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

@github/rest-api-operations

v3.8.1

Published

A Node.js module that decorates GitHub's OpenAPI schemas for rendering on docs.github.com

Downloads

125

Readme

This project is no longer maintained!

The decorated OpenAPI files are no longer generated from this repository. The code in this repository has been migrated over to github/docs-internal and a workflow automatically runs a script to decorate dereferenced OpenAPI schema files when PRs are opened in the github/docs-internal repo by github-openapi-bot.








@github/rest-api-operations

A Node.js module that decorates GitHub OpenAPI schemas for rendering on docs.github.com.

What it does

  • Generates arrays of Operation objects from GitHub OpenAPI schemas
  • Validates generated operations using a JSON schema
  • Generates code samples for curl, @octokit/core.js, and octokit.rb. See Extensions.
  • Renders operation markdown properties to HTML using hubdown:
    • descriptions
    • code samples
    • response payloads
    • parameter descriptions
    • body paramater descriptions
    • preview notices
  • Adds slug properties to each operation for use as unique DOM ids using github-slugger
  • Adds HTTP status messages to responses using http-status-code
  • Derives category and subcategory to support legacy /v3/{category}/{subcategory} URLs
  • Matches internal nomenclature for GitHub product variants, e.g. dotcom and 2.20

Publishing process

This project uses semantic-release and a GitHub Actions workflow to automatically publish a new version of the npm package whenever pull requests are merged to the default branch. To enable this, we give our pull request titles semantic prefixes like fix: and feat: . To learn more about semantic-release and semantic commit messages, watch this YouTube video.

Installation

npm install @github/rest-api-operations

Usage

The npm module exports a single property schemas which is an object containing multiple versions of the GitHub REST API schema for api.github.com and all currently supported versions of GitHub Enterprise Server.

const { schemas } = require('@github/rest-api-operations')

console.log(Object.keys(schemas))
// [
//   'api.github.com',
//   'ghes-2.17',
//   'ghes-2.18',
//   'ghes-2.19',
//   'ghes-2.20'
// ]

console.log(schemas['ghes-2.20'])
// [
//   { Operation },
//   { Operation },
//   { Operation },
//   ...
// ]

Previewing changes locally

Sometimes it's helpful to preview changes you've made to this module on your local checkout of the GitHub Docs website. Assuming you have the two repositories checked out in the same parent directory, run the following:

cd ~/your-checkout-of/github/docs-internal
npm link ../rest-api-operations
cd ../rest-api-operations
npm run watch

This creates a symlink between the two projects and starts a watcher process that runs the @github/rest-api-operations build script whenever you make changes to its source files. These changes should be visible on your local development server.

When you're done previewing changes, remove the symlink:

cd ~/your-checkout-of/github/docs-internal
npm unlink ../rest-api-operations