
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.
@agnostack/requestd
Advanced tools
🎮 Minimal isomorphic Node or Browser request library.
yarn add @agnostack/requestd
# npm install @agnostack/requestd
import { Client } from '@agnostack/requestd'
// const { Client } = require('@agnostack/requestd')
const requestd = new Client({
store_url: '...', // Magento2 Store Url.
username: '...', // Magento2 Admin username (for token).
password: '...' // Magento2 Admin password (for token).
})
// const requestd = new Client({
// store_url: '...', // Magento2 Store Url.
// access_token: '...' // Magento2 Admin token.
// })
requestd
.get('products/types')
.then(console.log)
.catch(console.error)
requestd
.post('carts/12345/estimate-shipping-methods', {
address: {
country_id: 'US'
}
})
.then(console.log)
.catch(console.error)
requestd
.put('/carts/12345', {
customerId: 3,
storeId: 1
})
.then(console.log)
.catch(console.error)
// GraphQL
requestd
.query({
query: `
{
products(
filter: { sku: { like: "sku-123" } }
) {
items {
sku
}
}
}
`
})
.then(console.log)
.catch(console.error)
import MyCustomStorageAdapter from './MyCustomStorageAdapter'
const requestd = new Client({
store_url: '...',
username: '...',
password: '...',
access_token: '...',
store_code: '...',
storage: new MyCustomStorageAdapter()
version: 'V1',
headers: {
// ...
}
})
The API provides you the ability to send various request headers that change the way data is stored or retrieved.
By default this library will encode all data as JSON, however you can customise this by setting your own Content-Type
header as an additional argument to get
, post
, put
and delete
.
Note: If you add the Content-Type
custom header to post
, put
or delete
you will need to encode data
yourself.
const requestd = new Client({
store_url: '...',
username: '...',
password: '...'
})
const headers = {
'X-My-Header': 'custom'
}
requestd
.get('products/types', headers)
.then(console.log)
.catch(console.error)
Contact Adam Grohs @ agnoStack for any questions.
FAQs
Please contact agnoStack via info@agnostack.com for any questions
We found that @agnostack/requestd 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.
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.