Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
myfetchapi
Advanced tools
mFetch is a JavaScript library that provides a utility function for making HTTP requests with queuing and retry functionality.
A simple fetch wrapper with concurrency control and retry functionality.
You can install this package via npm:
npm install myfetchapi
yarn add myfetchapi
bun add myfetchapi
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));
The main function to make HTTP requests.
input
: RequestInfo - The URL or Request object.init
(optional): RequestInit - The request Options for the HTTP(S) requestoptions
(optional): myFetchOptions - Additional options.
useNodeFetch
(optional): boolean - Set to true to use Node.js Options, e.g., agents.maxRetry
(optional): number | null - How many times a request will retry if it failed. Default is 3.retryCb
(optional): function - Callback function that is called when the HTTP(S) request is retrying.
err
: Error object.count
: Retry count.max
: Max retry count.retryCondition
(optional): function - Function to override and set your own condition for retrying.
res
: HTTP(S) Response object.Function to set the maximum number of concurrent requests.
max
: number - The maximum number of concurrent requests.This project is licensed under the MIT License
FAQs
mFetch is a JavaScript library that provides a utility function for making HTTP requests with queuing and retry functionality.
The npm package myfetchapi receives a total of 0 weekly downloads. As such, myfetchapi popularity was classified as not popular.
We found that myfetchapi demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.