Socket
Socket
Sign inDemoInstall

@adobe/aio-lib-core-networking

Package Overview
Dependencies
54
Maintainers
22
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @adobe/aio-lib-core-networking

Adobe I/O Lib Core Networking


Version published
Weekly downloads
16K
decreased by-9.08%
Maintainers
22
Install size
4.01 MB
Created
Weekly downloads
 

Readme

Source

Version Downloads/week Node.js CI License Codecov Coverage

Adobe I/O Core Networking Lib

Installing

$ npm install @adobe/aio-lib-core-networking

Usage

  1. Initialize the SDK
const { HttpExponentialBackoff, createFetch } = require('@adobe/aio-lib-core-networking')
const fetchRetry = new HttpExponentialBackoff()
const proxyFetch = createFetch()
  1. Call methods using the initialized SDK

const { HttpExponentialBackoff, createFetch } = require('@adobe/aio-lib-core-networking')
const fetchRetry = new HttpExponentialBackoff()
async function sdkTest() {

  return new Promise((resolve, reject) => {
    fetchRetry.exponentialBackoff(url, requestOptions, retryOptions, retryOn, retryDelay)
    .then((response) => {
      if (!response.ok) {
        throw Error(reduceError(response))
      }
      resolve(response.json())
    })
    .catch(err => {
      reject(
        new codes.ERROR_GET_SOMETHING({ sdkDetails, messageValues: err }))
    })
  }) 
}

let proxyFetch 
// this will get the proxy settings from the the HTTP_PROXY or HTTPS_PROXY environment variables, if set
proxyFetch = createFetch()

// this will use the passed in proxy settings. Embed basic auth in the url, if required
proxyFetch = createFetch({ proxyUrl: 'http://my.proxy:8080' })

// if the proxy settings are not passed in, and not available in the HTTP_PROXY or HTTPS_PROXY environment variables, it falls back to a simple fetch
const simpleFetch = createFetch()

Classes

HttpExponentialBackoff

This class provides methods to implement fetch with retries. The retries use exponential backoff strategy with defaults set to max of 3 retries and initial Delay as 100ms

ProxyFetch

This provides a wrapper for fetch that facilitates proxy auth authorization.

Functions

createFetch([proxyAuthOptions])function

Return the appropriate Fetch function depending on proxy settings.

parseRetryAfterHeader(header)number

Parse the Retry-After header Spec: https://tools.ietf.org/html/rfc7231#section-7.1.3

Typedefs

RetryOptions : object

Fetch Retry Options

ProxyAuthOptions : object

Proxy Auth Options

HttpExponentialBackoff

This class provides methods to implement fetch with retries. The retries use exponential backoff strategy with defaults set to max of 3 retries and initial Delay as 100ms

Kind: global class

httpExponentialBackoff.exponentialBackoff(url, requestOptions, [retryOptions], [retryOn], [retryDelay]) ⇒ Promise.<Response>

This function will retry connecting to a url end-point, with exponential backoff. Returns a Promise.

Kind: instance method of HttpExponentialBackoff
Returns: Promise.<Response> - Promise object representing the http response

ParamTypeDescription
urlstringendpoint url
requestOptionsobject | Requestrequest options
[retryOptions]RetryOptions(optional) retry options
[retryOn]function | Array(optional) Function or Array. If provided, will be used instead of the default
[retryDelay]function | number(optional) Function or number. If provided, will be used instead of the default

ProxyFetch

This provides a wrapper for fetch that facilitates proxy auth authorization.

Kind: global class

new ProxyFetch(authOptions)

Initialize this class with Proxy auth options

ParamTypeDescription
authOptionsProxyAuthOptionsthe auth options to connect with

proxyFetch.fetch(resource, options) ⇒ Promise.<Response>

Fetch function, using the configured NTLM Auth options.

Kind: instance method of ProxyFetch
Returns: Promise.<Response> - Promise object representing the http response

ParamTypeDescription
resourcestring | Requestthe url or Request object to fetch from
optionsobjectthe fetch options

createFetch([proxyAuthOptions]) ⇒ function

Return the appropriate Fetch function depending on proxy settings.

Kind: global function
Returns: function - the Fetch API function

ParamTypeDescription
[proxyAuthOptions]ProxyAuthOptionsthe proxy auth options

parseRetryAfterHeader(header) ⇒ number

Parse the Retry-After header Spec: https://tools.ietf.org/html/rfc7231#section-7.1.3

Kind: global function
Returns: number - Number of milliseconds to sleep until the next call to getEventsFromJournal

ParamTypeDescription
headerstringRetry-After header value

RetryOptions : object

Fetch Retry Options

Kind: global typedef
Properties

NameTypeDescription
maxRetriesnumberthe maximum number of retries to try (default:3)
initialDelayInMillisnumberthe initial delay in milliseconds (default:100ms)
proxyProxyAuthOptionsthe (optional) proxy auth options

ProxyAuthOptions : object

Proxy Auth Options

Kind: global typedef
Properties

NameTypeDescription
proxyUrlstringthe proxy's url
rejectUnauthorizedbooleanset to false to not reject unauthorized server certs

Debug Logs

LOG_LEVEL=debug <your_call_here>

Prepend the LOG_LEVEL environment variable and debug value to the call that invokes your function, on the command line. This should output a lot of debug data for your SDK calls.

Contributing

Contributions are welcome! Read the Contributing Guide for more information.

Licensing

This project is licensed under the Apache V2 License. See LICENSE for more information.

FAQs

Last updated on 12 Feb 2024

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc