Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.