Socket
Socket
Sign inDemoInstall

myfetchapi

Package Overview
Dependencies
0
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    myfetchapi

mFetch is a JavaScript library that provides a utility function for making HTTP requests with queuing and retry functionality.


Version published
Weekly downloads
38
decreased by-83.41%
Maintainers
1
Install size
19.7 kB
Created
Weekly downloads
 

Readme

Source

myfetchapi

A simple fetch wrapper with concurrency control and retry functionality.

Installation

You can install this package via npm:

npm install myfetchapi

Usage

const { myFetch, SET_MAX_CONCURRENT_REQUESTS } = require("myfetchapi");

// Set maximum concurrent requests. default is 500
SET_MAX_CONCURRENT_REQUESTS(100);

// Make a request
myFetch(
  "https://example.com/api/data",
  { method: "GET" },
  { maxRetry: 5 /* default is 3. To disable retries, set it to `null` or `0` */ }
)
  .then((response) => console.log(response))
  .catch((error) => console.error(error));

API

myFetch

The main function to make HTTP requests.

  • Parameters:
    • input: RequestInfo - The URL or Request object.
    • init (optional): RequestInit - The request options.
    • options (optional): myFetchOptions - Additional options.
  • Returns: Promise

SET_MAX_CONCURRENT_REQUESTS

Function to set the maximum number of concurrent requests.

  • Parameters:
    • max: number - The maximum number of concurrent requests.

License

This project is licensed under the ISC License

Keywords

FAQs

Last updated on 21 Apr 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