
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
@apicase/adapter-fetch
Advanced tools
Fetch adapter for @apicase/core
npm install @apicase/adapter-fetch
import { apicase } from '@apicase/core'
import fetch from '@apicase/adapter-fetch'
const fetchAPI = apicase(fetch)
We use node-fetch as polyfill for Node.js
const req = await fetchAPI({
url: '/api/posts',
headers: { token: 'my_secret_token' },
query: { userId: 1 }
})
// Whether request was succeed or failed
console.log(req.success)
// Fetch result (with response body, headers etc)
console.log(req.result)
Fetch adapter has path-to-regexp to pass urls params smarter.
Params are stored in params property
fetchAPI({
url: '/api/posts/:id',
params: { id: 1 }
})
// => GET /api/posts/1
You can define query params in query property
fetchAPI({
url: '/api/posts',
query: { userId: 1 }
})
// => GET /api/posts?userId=1
If you have some specific API, you can define custom status validation
fetchAPI({
url: '/api/posts',
validateStatus: status => status === 200
})
Default status validation behaviour is:
function(status) {
return status >= 200 && status < 300
}
Extended services will have concatenated URI, if the next part doesn't start with /:
const service1 = new ApiService(fetch, { url: '/api' })
// { "url": "/api/posts" }
const service2 = service1.extend({ url: 'posts' })
// { "url": "/posts" }
const service3 = service1.extend({ url: '/posts' })
{
// Request URL
"url": String,
// Response parser
// default: 'json'
"parser": String,
// Request method
// default: 'GET'
"method": String,
// Request headers
// default: {}
"headers": Object,
// Request body
// default: undefined
"body": Object|FormData,
// Credentials
// default: 'omit'
"credentials": String,
// URL params
// default: {}
"params": Object,
// Query params
// default: {}
"query": Object,
// Status validation callback
// default: status => status >= 200 && status < 300
"validateStatus": Function
}
MIT
FAQs
Fetch adapter for Apicase
We found that @apicase/adapter-fetch 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 Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.

Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.

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.