Socket
Socket
Sign inDemoInstall

google-gax

Package Overview
Dependencies
11
Maintainers
4
Versions
358
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

google-gax


Version published
Weekly downloads
4.9M
decreased by-3.49%
Maintainers
4
Created
Weekly downloads
 

Package description

What is google-gax?

The google-gax (Google API Extensions) package is a set of libraries for making Google API client libraries. It provides functionality such as automatic retries, page iteration, and request bundling. It is mainly used internally by Google's auto-generated client libraries for Node.js.

What are google-gax's main functionalities?

Automatic Retries

This feature allows developers to specify retry logic for failed requests. The RetryOptions class can be used to define backoff settings for retries.

const {RetryOptions} = require('google-gax');
const retryOptions = new RetryOptions(
  [100, 200, 400, 800, 1600],
  RetryOptions.createRetryPolicy()
);

Page Iteration

This feature simplifies the process of iterating over multiple pages of API response data. The createApiCall function can be configured to handle pagination automatically.

const {createApiCall} = require('google-gax');
const apiCall = createApiCall(
  promiseFunc,
  {autoPaginate: true}
);
const resources = [];
apiCall({},
  (err, response, nextPageRequest, rawResponse) => {
    resources.push(...response);
    if (nextPageRequest) {
      // More results to fetch
    }
  }
);

Request Bundling

Request bundling allows developers to combine multiple API calls into a single request to reduce network overhead. The BundleDescriptor and BundleExecutor classes are used to define and execute bundled requests.

const {BundleDescriptor, BundleExecutor} = require('google-gax');
const descriptor = new BundleDescriptor(
  'bundled_field',
  ['field1', 'field2'],
  'bundled_field',
  1024
);
const executor = new BundleExecutor({descriptor});

Other packages similar to google-gax

Keywords

FAQs

Last updated on 22 Dec 2023

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc