Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@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
The npm package @apicase/adapter-fetch receives a total of 252 weekly downloads. As such, @apicase/adapter-fetch popularity was classified as not popular.
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.