
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
fetch-class
Advanced tools
An ES6 wrapper class for simplified fetch API requests.
This example shows you how to extend the fetch class and create an instances with different URL prefixes.
import Fetch from 'fetch-class'
let apis = {
local: new Fetch(), // Instance with no prefix
placeholder: new Fetch('http://jsonplaceholder.typicode.com') // Instance with jsonplaceholder prefix
}
apis.placeholder.get('/posts/', (response) => {
// Application logic to deal with array of posts from http://jsonplaceholder.com/posts/
})
apis.local.get('/posts/', (response) => {
// Application logic to deal with array of posts from local server - /posts/
})
baseUrl
Base URL prefix for all instance requests.
defaultOptions
Default options for all instance requests. Supports all options defined in the fetch API documentation, not listed here.
method
: Request method - GET, POST, PUT, PATCH, DELETEdata
: Data to add to request body or query string, depending on request typequeryParams
: Associative object of properties to add to the query string, regardless of request methodalwaysTriggerCallback
: Trigger the callback, even if request failscallback
: Callback to trigger when request completes - is provided with the promise, response and what's provided in extraCallbackParams
optionextraCallbackParams
: Extra parameters to provide to the callback arguments objectheaders
: HTTP headers object to set on the request{
method: 'GET',
data: {},
queryParams: {},
alwaysTriggerCallback: false,
callback: undefined,
extraCallbackParams: {},
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
}
}
Public control methods to be accessed on an instance are as follows:
Perform a request with the provided URL and options.
Perform a GET request with the provided URL and options.
Perform a POST request with the provided URL and options.
Perform a PUT request with the provided URL and options.
Perform a PATCH request with the provided URL and options.
Perform a DELETE request with the provided URL and options.
The class triggers the following events:
Triggered before request is sent.
{
url: url, // URL to send request to - appended to the instance's base URL
options: options // Request options
}
Triggered before request is sent.
{
url: url, // URL to send request to - appended to the instance's base URL
options: options, // Request options
args: args // Callback arguments object
}
FAQs
An ES6 wrapper class for simplified fetch API requests.
We found that fetch-class demonstrated a not healthy version release cadence and project activity because the last version was released 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
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.