Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gatsby-source-github-contributors

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gatsby-source-github-contributors

Gatsby source that fetches all the contributors on a GitHub repository

  • 0.1.10
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

gatsby-source-github-contributors

npm

A Gatsby source plugin for pulling all the contributors for a github repository.

Install

via npm

npm install --save gatsby-source-github-contributors

or via yarn

yarn add gatsby-source-github-contributors

Example

Getting data from two different tables:

// In gatsby-config.js
plugins: [
  {
    resolve: `gatsby-source-github-contributors`,
    options: {
      repo: "strawberry-graphql/strawberry"
    }
  }
];

Get all the contributors via GraphQL

{
    allGitHubContributor {
        nodes {
            login
            name
            url
        }
    }
}

API Keys

This source doesn't require API keys but, since GitHub throttles requests, it is recommended to use a token or app credentials.

Using a token
// In gatsby-config.js
plugins: [
  {
    resolve: `gatsby-source-github-contributors`,
    options: {
      repo: "strawberry-graphql/strawberry",
      token: process.env.GITHUB_TOKEN
    }
  }
];

For more authentication options, refer to github-base docs.

Keywords

FAQs

Package last updated on 19 Jan 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc