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

@fgiova/undici-rest-client

v2.0.0

Published

[![NPM version](https://img.shields.io/npm/v/@fgiova/undici-rest-client.svg?style=flat)](https://www.npmjs.com/package/@fgiova/undici-rest-client) ![CI workflow](https://github.com/fgiova/undici-rest-client/actions/workflows/node.js.yml/badge.svg) [![Type

Downloads

4

Readme

Simple REST client using undici

NPM version CI workflow TypeScript Maintainability Test Coverage

Description

This is a simple REST client using undici as http client. It's support a simple retry mechanism using exponential backoff or using delay based on retry-after HTTP header It's implement a simple LRU cache mechanism on idempotent HTTP methods.

[!NOTE] For node 16 use version 1.x, version 2.x support only Node.js >= 18.

Installation

npm install @fgiova/undici-rest-client

Usage

import { RestClient } from "@fgiova/undici-rest-client";

const client = new RestClient({
    baseUrl: "https://foo.bar.org",
    retry: {
        httpCodes: [503, 429],
        baseTimeout: 1000,
        maxTimeout: 10000,
        maxRetry: 5,
        backoff: (retryCount) => 2 ** retryCount * 1000,
    },
	cache: new LRUCache<string, any>({max: 10})
});

const response = await client.get("/foo/bar", {
    headers: {
        "x-foo": "bar",
    },
    ttl: 1000,
    requestKey: "foo-bar",
});

const response = await client.post("/foo/bar", {
    headers: {
        "x-foo": "bar",
    },
    ttl: 1000,
    requestKey: "foo-bar",
    body: {
        foo: "bar",
    }
});

Client Options

| Option | Type | Default | Description | |---------|-----------------------|---------|-----------------------------------------------| | baseUrl | string | | The base domain url to be used for the client | | retry | Retry Options | | The retry options | | cache | LRUCache<string, any> | | The LRU cache instance | | undici | Undici Option | | The undici options |

Retry Options

| Option | Type | Default | Description | |-----------------|-------------------------------------|------------------------------|-----------------------------------------------| | httpCodes | number[] | 502, 503, 429, 408, 504, 599 | The HTTP codes to be retried | | baseTimeout | number | 300 | The base timeout in ms | | maxTimeout | number | 30000 | The max timeout in ms | | maxRetry | number | 3 | The max number of retry | | backoff | (retryCount: number) => number | exponential backoff | The backoff function |

Undici Options

| Option | Type | Default | Description | |-----------------|------------------|---------|-----------------------------------------------| | clientOption | Pool.Options | | The number of connections | | pipelining | number | | The number of pipelining |

RequestOptions

| Option | Type | Default | Description | |-----------------|-------------------------------------|---------|-----------------------------------------------| | headers | Record<string, string> | | The HTTP headers | | body | any | | The HTTP body | | ttl | number | | The TTL for the cache | | requestKey | string | | The key for the cache | | path | string | | The path for the request |

Notes: The cache is a simple LRU cache with a max size of 1000 items and a default TTL of 30 seconds. The cache TTL can be overridden using the ttl option in the request. The cache key is generated using the request method, the request path and the request body. The cache key can be overridden using the requestKey option in the request. When the request is not idempotent, the cache is disabled. When the body is a plain object the header content-type "application/json" is added to request. When response is a not compressible (typically a binary response) array buffer are returned. Parallel idempotent requests at same resource are deduplicated.

Methods

request

request<T = any>(options: RequestOptions): Promise<Response<T>>;

get

get<T = any>(path: string, options?: Omit<RequestOptions, "path" | "method" | "body" >): Promise<Response<T>>;

post

post<T = any>(path: string, options?: Omit<RequestOptions, "path" | "method">): Promise<Response<T>>;

put

put<T = any>(path: string, options?: Omit<RequestOptions, "path" | "method">): Promise<Response<T>>;

patch

patch<T = any>(path: string, options?: Omit<RequestOptions, "path" | "method">): Promise<Response<T>>;

delete

delete<T = any>(path: string, options?: Omit<RequestOptions, "path" | "method" | "body" | "ttl">): Promise<Response<T>>;

License

Licensed under MIT.