Socket
Socket
Sign inDemoInstall

@octokit/plugin-throttling

Package Overview
Dependencies
Maintainers
0
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@octokit/plugin-throttling

Octokit plugin for GitHub's recommended request throttling


Version published
Weekly downloads
2M
increased by4.16%
Maintainers
0
Weekly downloads
 
Created

What is @octokit/plugin-throttling?

@octokit/plugin-throttling is a plugin for Octokit, the GitHub REST API client for JavaScript. It helps manage and throttle requests to the GitHub API to avoid hitting rate limits. This is particularly useful for applications that make a large number of requests to the GitHub API.

What are @octokit/plugin-throttling's main functionalities?

Basic Throttling

This feature allows you to set up basic throttling for your GitHub API requests. It includes handlers for rate limits and abuse detection, allowing you to retry requests or handle them appropriately.

const { Octokit } = require('@octokit/core');
const { throttling } = require('@octokit/plugin-throttling');

const MyOctokit = Octokit.plugin(throttling);

const octokit = new MyOctokit({
  auth: 'personal-access-token123',
  throttle: {
    onRateLimit: (retryAfter, options) => {
      console.warn(`Request quota exhausted for request ${options.method} ${options.url}`);
      if (options.request.retryCount === 0) { // only retries once
        console.log(`Retrying after ${retryAfter} seconds!`);
        return true;
      }
    },
    onAbuseLimit: (retryAfter, options) => {
      console.warn(`Abuse detected for request ${options.method} ${options.url}`);
    }
  }
});

// Example request
octokit.request('GET /user')
  .then(response => console.log(response))
  .catch(error => console.error(error));

Custom Throttling Options

This feature allows you to customize throttling options such as minimum secondary rate retry time and base value for retry after. It provides more control over how your application handles rate limits and abuse detection.

const { Octokit } = require('@octokit/core');
const { throttling } = require('@octokit/plugin-throttling');

const MyOctokit = Octokit.plugin(throttling);

const octokit = new MyOctokit({
  auth: 'personal-access-token123',
  throttle: {
    onRateLimit: (retryAfter, options, octokit) => {
      octokit.log.warn(`Request quota exhausted for request ${options.method} ${options.url}`);
      if (options.request.retryCount === 0) { // only retries once
        octokit.log.info(`Retrying after ${retryAfter} seconds!`);
        return true;
      }
    },
    onAbuseLimit: (retryAfter, options, octokit) => {
      octokit.log.warn(`Abuse detected for request ${options.method} ${options.url}`);
    },
    minimumSecondaryRateRetryAfter: 100,
    retryAfterBaseValue: 1000
  }
});

// Example request
octokit.request('GET /user')
  .then(response => console.log(response))
  .catch(error => console.error(error));

Other packages similar to @octokit/plugin-throttling

FAQs

Package last updated on 14 Jul 2024

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