
Product
Introducing Socket Scanning for OpenVSX Extensions
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.
@bss-sbc/shopify-rest-api-rate-limiter
Advanced tools
From: BSS Group > BSS Commerce > Division Shopify/Blockchain
BucketManager: Manage Token bucket rate limiter of active store
initializeAll: (activeStores: Shop[]) => number;: Initialize rate limiter for all given stores
initializeOne: (domain: string) => TokenBucketRateLimiter: Initialize rate limiter for specific domain
get: (domain: string) => TokenBucketRateLimiter: Get initialized rate limiter of a specific domain
clear: (domain: string) => void: Clear rate limiter of a specific domain, used when app is uninstalled
safeFetch: (domain: string, url: RequestInfo, params?: RequestInit) => Promise<Response>: use this instead of normal fetch, with additional parameter domain, which specify a store.
// To bulk initialize
const shops = [
{ id: 1, domain: 'dev-mida-dean.myshopify.com' },
{ id: 2, domain: 'dev-mida-store.myshopify.com' },
]
const intialized = BucketManager.initializeAll(shops);
// To initialize
BucketManager.initializeOne({
id: 1,
domain: 'dev-mida-dean.myshopify.com',
});
// To get specific bucket
const bucket = BucketManager.get('dev-mida-dean.myshopify.com');
// To clean up specific bucket
BucketManager.clear('dev-mida-dean.myshopify.com');
// Auto initialize bucket,
// using safeFetch
const response = await safeFetch(domain, url, params);
Because of numbers of microservices, it is difficult to listen to app/uninstalled webhook event. So, auto clear bucket is necessary
FAQs
README.md
We found that @bss-sbc/shopify-rest-api-rate-limiter 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 now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.

Product
Bringing supply chain security to the next generation of JavaScript package managers

Product
A safer, faster way to eliminate vulnerabilities without updating dependencies