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

@applitools/http-commons

v3.0.0

Published

<!-- markdownlint-disable MD024 -->

Downloads

196,275

Readme

http-commons

Library that has http common functionality, all around http-client currently.

Installing

npm install @applitools/http-commons

Using the package

Let's see an example with fetchAsJson

const {fetchAsJson} = require('@applitools/http-commons')

await fetchAsJson('https://swapi.co/api/people/1/') // ===> {name: "Luke Skywalker", ...}

API

All these functions with throw an exception if the status code is not 2xx. The excption will have the following properties:

  • code: it will be 'ERR_X_STATUS_CODE_NOT_OK'
  • status: the HTTP status code
  • statusText: the HTTP status text
  • headers: an object with the response headers

fetchAsBuffer(url, [fetchOptions], [options])

async fetches URL and returns a Buffer response.

url

The URL to fetch.

fetchOptions

The fetch options used by the node-fetch package.

options

The following options are available:

alternativeFetch

(For testing purposes) A function that will be used as an alternative to node-fetch-s fetch function.

returns

An object with the response body as JSON parsed.

Example

await fetchAsJson('https://swapi.co/api/people/1/') // ===> {name: "Luke Skywalker", ...}

fetchAsText(url, [fetchOptions], [options])

async fetches URL and returns the response as a string.

url

The URL to fetch.

fetchOptions

The fetch options used by the node-fetch package.

options

The following options are available:

alternativeFetch

(For testing purposes) A function that will be used as an alternative to node-fetch-s fetch function.

returns

A string with the response body.

Example

await fetchAsText('https://www.wikipedia.org')) // ===> "<!DOCTYPE html><html ..."

fetchAsTextWithJsonBody(url, json, [fetchOptions], [options])

async posts URL with a JSON body and returns the response as a string.

url

The URL to fetch.

fetchOptions

The fetch options used by the node-fetch package. Note that the default options are {method: 'POST', body: '_the_json_'}, with the correct content-type header, but you can override this using fetchOptions

options

The following options are available:

alternativeFetch

(For testing purposes) A function that will be used as an alternative to node-fetch-s fetch function.

returns

A string with the response body.

Example

await fetchAsTextWithJsonBody('https://httpbin.org/anything', {x: 4})) // ===> "{..{"x": 4}..}"

fetchAsJsonWithJsonBody(url, json, [fetchOptions], [options])

async posts URL with a JSON body and returns the response as a string.

url

The URL to fetch.

fetchOptions

The fetch options used by the node-fetch package. Note that the default options are {method: 'POST', body: '_the_json_'}, with the correct content-type header, but you can override this using fetchOptions

options

The following options are available:

alternativeFetch

(For testing purposes) A function that will be used as an alternative to node-fetch-s fetch function.

returns

A "JSON" object with the parsed body

Example

await fetchAsTextWithJsonBody('https://httpbin.org/anything', {x: 4}, {method: 'PUT'})) // ===> {..{"x": 4}..}

fetchAsBufferWithJsonBody(url, json, [fetchOptions], [options])

async posts URL with a JSON body and returns the response as a string.

url

The URL to fetch.

fetchOptions

The fetch options used by the node-fetch package. Note that the default options are {method: 'POST', body: '_the_json_'}, with the correct content-type header, but you can override this using fetchOptions

options

The following options are available:

alternativeFetch

(For testing purposes) A function that will be used as an alternative to node-fetch-s fetch function.

returns

A buffer with the response body.

Example

await fetchAsBufferWithJsonBody('https://httpbin.org/anything', {x: 4})) // ===> Buffer (....)

retryFetch(func, options)

Retries code and deals correctly with retrying HTTP and connection errors.

func

An async func that calls one of the fetch* functions above or the fetch in node-fetch directly.

options

retries

Number of retries before failing.

sleepTime

The time (in ms) for sleeping between retries

backoff

Exponential backoff factor for sleepTime

idempotent

Some errors, like 5xx http status error should not retry if the fetch operation is idempotent. So this flag says whether the operation is idempotent to know whether to retry.

returns

Whatever func returns

Example

const json = await retry(() => fetchAsJson('http://httpbin.org/anything'), {idempotent: true})