Socket
Book a DemoInstallSign in
Socket

fetch-goodies

Package Overview
Dependencies
Maintainers
0
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fetch-goodies

A tiny library for fetching with goodies

0.0.2
latest
Source
npmnpm
Version published
Maintainers
0
Created
Source

fetch-goodies

Fetch but with goodies.

Install

npm i fetch-goodies

Usage

Basic usage:

import { goodies } from 'fetch-goodies'
const fetchWithGoodies = goodies(fetch)
const response = await fetchWithGoodies('https://example.com')

Shorthand for verbs:

await fetchWithGoodies.get('https://example.com')
await fetchWithGoodies.post('https://example.com')
await fetchWithGoodies.put('https://example.com')

Typed JSON response with:

const response = await fetchWithGoodies.post<{ key: 'value' }>(
  'https://example.com'
)
console.log('Looks good?', response.json()!.key === 'value')

Common prefix for all requests:

const fetchWithGoodies = goodies(fetch, {
  urlPrefix: 'https://example.com/api',
})
const response = await fetchWithGoodies('/post')

Powerful retry options:

fetchWithGoodies('https://example.com', {
  retry: {
    count: 5,
    delay: (attempt) => 2 ** attempt * 1000,
    on: ({ error }) => error?.message.includes('Ah Shit, Here We Go Again'),
  },
})

Global retry options:

const fetchWithGoodies = goodies(fetch, {
  retry: { count: 5 },
  forceParseJson: true,
  httpCodesConsideredSuccessful: [
    200, 201, 202, 203, 204, 205, 206, 207, 208, 226, 300, 301, 302, 303, 304,
    305, 306, 307, 308,
  ],
  urlPrefix: 'https://example.com',
})

Powerful retry options:

fetchWithGoodies('https://example.com', {
  retry: {
    count: 5,
    delay: (attempt) => 2 ** attempt * 1000,
    on: ({ error }) => error?.message.includes('Ah Shit, Here We Go Again'),
  },
})

Can use a polyfilled fetch:

const fetchWithGoodies = goodies(polyfilledFetch)

Keywords

fetch

FAQs

Package last updated on 31 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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.