
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
@jacraig/request
Advanced tools
Wrapper around fetch that adds functionality including caching, retry, and timeouts.
@jacraig/request is a powerful yet lightweight library designed to simplify HTTP requests using the native fetch API while adding functionality such as caching, retry logic, and timeouts. It aims to provide developers with a convenient and flexible solution for handling HTTP requests in JavaScript and TypeScript applications.
You can install @jacraig/request via npm:
npm install @jacraig/request
Here's a basic example of how you can use @jacraig/request to make a fetch request:
import { Request } from '@jacraig/request';
let returnValue = await Request.get('https://jsonplaceholder.somewhere.com/post.json').send();
In order to use caching, retry logic, or timeouts, you can use the extra methods on the returned Request object to set options:
import { Request, StorageMode } from '@jacraig/request';
let returnValue = await Request.get('https://jsonplaceholder.somewhere.com/post.json')
.withStorageMode(StorageMode.StorageAndUpdate)
.withTimeout(5000)
.withRetryAttempts(3)
.send();
If you prefer to use callbacks instead of promises, you can do so by passing a callback function to the onSuccess method:
import { Request } from '@jacraig/request';
Request.get('https://jsonplaceholder.somewhere.com/post.json')
.onSuccess((response) => {
console.log(response);
})
.send();
For more detailed information on how to use @jacraig/request, please refer to the documentation on GitHub Pages.
@jacraig/request is licensed under the Apache 2.0 License
FAQs
Wrapper around fetch that adds functionality including caching, retry, and timeouts.
The npm package @jacraig/request receives a total of 88 weekly downloads. As such, @jacraig/request popularity was classified as not popular.
We found that @jacraig/request demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.