Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@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.
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 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.